Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.8-beta-4
-
None
-
None
-
Patch
Description
The attached patch automatically adds @ThreadInterrupt to the scripts in the console. This allows the "interrupt" button to work properly even if the script contains infinite loops.
Without the patch, the following script keeps running even if we click on the interrupt button :
while (true) { 1 }
After the patch, the script interrupts properly.