fixed exiting in another thread

This commit is contained in:
Daniella / Tove 2022-03-13 13:29:21 +01:00
parent 837af77dbc
commit d886280f10

View file

@ -140,7 +140,7 @@ public class ISBPL {
try {
block.call(file, s);
} catch (ISBPLStop stop) {
if(stop.amount == -1) {
if(stop.amount < 0) {
System.exit(exitCode);
}
}