minor changes

This commit is contained in:
Stephan Richter
2020-11-06 20:52:55 +01:00
parent 9fed18a517
commit d3ca0a08ef
11 changed files with 34 additions and 17 deletions

View File

@@ -87,7 +87,7 @@ public class Train extends BaseClass implements Comparable<Train> {
stop = false;
while (true) {
if (isNull(route)) {
Thread.sleep(2000);
Thread.sleep(1000);
if (stop) return;
Train.this.start();
}