3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-08 20:43:04 +02:00

Null check tick thread (#1812)

Dieser Commit ist enthalten in:
Camotoy 2021-01-05 23:28:31 -05:00 committet von GitHub
Ursprung 0641800be7
Commit 92c86cf15b
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -595,7 +595,9 @@ public class GeyserSession implements CommandSender {
}
}
tickThread.cancel(true);
if (tickThread != null) {
tickThread.cancel(true);
}
this.chunkCache = null;
this.entityCache = null;