Fix ForgeChunkManager world unloading check (#2736)
This commit is contained in:
parent
2a4067a539
commit
03584ec411
1 changed files with 1 additions and 1 deletions
|
@ -598,7 +598,7 @@ public class ForgeChunkManager
|
|||
forcedChunks.remove(world);
|
||||
dormantChunkCache.remove(world);
|
||||
// integrated server is shutting down
|
||||
if (FMLCommonHandler.instance().getMinecraftServerInstance().isServerRunning())
|
||||
if (!FMLCommonHandler.instance().getMinecraftServerInstance().isServerRunning())
|
||||
{
|
||||
playerTickets.clear();
|
||||
tickets.clear();
|
||||
|
|
Loading…
Reference in a new issue