Chunkloader fixes

This commit is contained in:
StevenRS11
2013-11-12 13:49:43 -05:00
parent b18fe877de
commit b818038fd6
2 changed files with 12 additions and 2 deletions

View File

@@ -321,8 +321,14 @@ public class mod_pocketDim
CommandCreatePocket.instance().register(event);
CommandTeleportPlayer.instance().register(event);
ChunkLoaderHelper.loadChunkForcedWorlds(event);
try
{
ChunkLoaderHelper.loadChunkForcedWorlds(event);
}
catch(Exception e)
{
System.out.println("Loading chunkloaders failed");
}
}
public static void sendChat(EntityPlayer player, String message)