Chunkloader fixes

This commit is contained in:
StevenRS11
2013-11-12 13:56:52 -05:00
parent 8fbb41a588
commit 7687a77332
2 changed files with 29 additions and 20 deletions

View File

@@ -319,7 +319,13 @@ 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");
}
}
}