SteamWar/BauSystem
Archiviert
13
0

UnloadWorld-Bugfix

Dieser Commit ist enthalten in:
Lixfel 2019-03-29 23:44:43 +01:00
Ursprung a8eb4c84c8
Commit 8efbb5a5b1

Datei anzeigen

@ -22,7 +22,7 @@ class LagDetectorRunnable implements Runnable {
@Override
public void run() {
if (world == null) {
if (world == null || task.isCancelled()) {
task.cancel();
return;
}