1.6.2 code #121

Merged
StevenRS11 merged 78 commits from 1.6.2-code into master 2014-01-03 07:15:09 +00:00
Showing only changes of commit 6d2c645ce9 - Show all commits

View File

@@ -171,7 +171,6 @@ public class mod_pocketDim
riftGen = new GatewayGenerator(properties); riftGen = new GatewayGenerator(properties);
} }
@SuppressWarnings("unused")
@EventHandler @EventHandler
public void onInitialization(FMLInitializationEvent event) public void onInitialization(FMLInitializationEvent event)
{ {
@@ -211,8 +210,8 @@ public class mod_pocketDim
itemWorldThread = (new ItemWorldThread(properties.ItemWorldThreadID)).setUnlocalizedName("itemWorldThread"); itemWorldThread = (new ItemWorldThread(properties.ItemWorldThreadID)).setUnlocalizedName("itemWorldThread");
mod_pocketDim.limboBiome= (new BiomeGenLimbo(properties.LimboBiomeID)); mod_pocketDim.limboBiome = (new BiomeGenLimbo(properties.LimboBiomeID));
mod_pocketDim.pocketBiome= (new BiomeGenPocket(properties.PocketBiomeID)); mod_pocketDim.pocketBiome = (new BiomeGenPocket(properties.PocketBiomeID));
GameRegistry.registerWorldGenerator(mod_pocketDim.riftGen); GameRegistry.registerWorldGenerator(mod_pocketDim.riftGen);
tracker = new PlayerTracker(); tracker = new PlayerTracker();
@@ -331,7 +330,7 @@ public class mod_pocketDim
{ {
ChunkLoaderHelper.loadChunkForcedWorlds(event); ChunkLoaderHelper.loadChunkForcedWorlds(event);
} }
catch(Exception e) catch (Exception e)
{ {
System.out.println("Loading chunkloaders failed"); System.out.println("Loading chunkloaders failed");
} }
@@ -342,6 +341,5 @@ public class mod_pocketDim
ChatMessageComponent cmp = new ChatMessageComponent(); ChatMessageComponent cmp = new ChatMessageComponent();
cmp.addText(message); cmp.addText(message);
player.sendChatToPlayer(cmp); player.sendChatToPlayer(cmp);
} }
} }