Fix ForgeChunkManager world unloading check (#2736)

This commit is contained in:
Matti Ruohonen 2016-04-08 01:39:55 +03:00 committed by LexManos
parent 2a4067a539
commit 03584ec411
1 changed files with 1 additions and 1 deletions

View File

@ -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();