Jump to content

Custom biome error


invizzble

Recommended Posts

i made me a custom biom and when i make the toplayer and the fillerlayer a vanilla block, there isn't any problem buth when i try to use my own blocks i get this error,, please help :(

 

---- Minecraft Crash Report ----
// You should try our sister game, Minceraft!

Time: 24-6-13 16:20
Description: Exception in server tick loop

java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1
at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863)
at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:787)
at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478)
at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44)
at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557)
at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482)
at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44)
at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023)
at net.minecraft.entity.Entity.moveEntity(Entity.java:967)
at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345)
at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
Minecraft Version: 1.5.2
Operating System: Windows 8 (amd64) version 6.2
Java Version: 1.7.0_21, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 197891536 bytes (188 MB) / 468320256 bytes (446 MB) up to 922746880 bytes (880 MB)
JVM Flags: 0 total; 
AABB Pool Size: 6036 (338016 bytes; 0 MB) allocated, 5225 (292600 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 6, tallocated: 62
FML: MCP v7.51 FML v5.2.23.734 Minecraft Forge 7.8.0.734 13 mods loaded, 13 mods active
mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
FML{5.2.23.734} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Forge{7.8.0.734} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
BC{0.1} [blockCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
BuildCraft|Core{@VERSION@} [buildCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
BuildCraft|Builders{@VERSION@} [bC Builders] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
BuildCraft|Energy{@VERSION@} [bC Energy] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
BuildCraft|Factory{@VERSION@} [bC Factory] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
BuildCraft|Transport{@VERSION@} [bC Transport] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
BuildCraft|Silicon{@VERSION@} [bC Silicon] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
EE3{@VERSION@ (build @BUILD_NUMBER@)} [Equivalent Exchange 3] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
SC{0.0.1} [scientomic craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
NC{alpha 1.0} [Nightmare Craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available
Profiler Position: N/A (disabled)
Vec3 Pool Size: 3558 (199248 bytes; 0 MB) allocated, 3421 (191576 bytes; 0 MB) used
Player Count: 1 / 8; [EntityPlayerMP['tomasdude'/246, l='New World', x=9,00, y=69,00, z=15,00]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

Link to comment
Share on other sites

my biome file is :

package invizzble.mods.nc.biomes;

import invizzble.mods.nc.blocks.ModBlocks;
import invizzble.mods.nc.lib.BiomeReferences;
import net.minecraft.block.Block;
import net.minecraft.world.biome.BiomeGenBase;

public class NightmareBiome extends BiomeGenBase {

    public NightmareBiome(int id) {
        super(id);
        
        this.topBlock= (byte)ModBlocks.MoonMeteorite.blockID;
        this.fillerBlock= (byte)Block.blockDiamond.blockID;
        this.setBiomeName(BiomeReferences.NIGHTMAREBIOME_NAME);
        
        this.setMinMaxHeight(0F, 0.1F);
        this.setDisableRain();
    }

}

 

and this is the file where i give it the id and stuff...

 

package invizzble.mods.nc.biomes;

import cpw.mods.fml.common.registry.GameRegistry;
import invizzble.mods.nc.lib.BiomeReferences;
import net.minecraft.world.biome.BiomeGenBase;

public class ModBiomes {
    
    public static BiomeGenBase BiomeNightmare;
    
        public static void init(){
            BiomeNightmare= new NightmareBiome(BiomeReferences.NIGHTMAREBIOME_ID);
            
            
            GameRegistry.addBiome(BiomeNightmare);
        
        }

}

Link to comment
Share on other sites

look i'm gonna give you everything i think can be usefull, if you need any other things you just say it and i give it...

 

crash-report:

---- Minecraft Crash Report ----
// On the bright side, I bought you a teddy bear!

Time: 24-6-13 19:02
Description: Exception in server tick loop

java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1
at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863)
at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792)
at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478)
at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44)
at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557)
at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482)
at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44)
at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023)
at net.minecraft.entity.Entity.moveEntity(Entity.java:967)
at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345)
at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)


A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- System Details --
Details:
Minecraft Version: 1.5.2
Operating System: Windows 8 (amd64) version 6.2
Java Version: 1.7.0_21, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 223143520 bytes (212 MB) / 721092608 bytes (687 MB) up to 922746880 bytes (880 MB)
JVM Flags: 0 total; 
AABB Pool Size: 2953 (165368 bytes; 0 MB) allocated, 2631 (147336 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 4, tcache: 0, allocated: 2, tallocated: 64
FML: MCP v7.51 FML v5.2.23.734 Minecraft Forge 7.8.0.734 13 mods loaded, 13 mods active
mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
FML{5.2.23.734} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
Forge{7.8.0.734} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
BC{0.1} [blockCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
BuildCraft|Core{@VERSION@} [buildCraft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
BuildCraft|Builders{@VERSION@} [bC Builders] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
BuildCraft|Energy{@VERSION@} [bC Energy] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
BuildCraft|Factory{@VERSION@} [bC Factory] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
BuildCraft|Transport{@VERSION@} [bC Transport] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
BuildCraft|Silicon{@VERSION@} [bC Silicon] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
EE3{@VERSION@ (build @BUILD_NUMBER@)} [Equivalent Exchange 3] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
SC{0.0.1} [scientomic craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
NC{alpha 1.0} [Nightmare Craft] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available->Available
Profiler Position: N/A (disabled)
Vec3 Pool Size: 2046 (114576 bytes; 0 MB) allocated, 1327 (74312 bytes; 0 MB) used
Player Count: 1 / 8; [EntityPlayerMP['tomasdude'/60546, l='New World', x=5,00, y=70,23, z=63,00]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

 

the things my eclipse says while crashing:

2013-06-24 19:02:36 [iNFO] [sTDERR] java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.entity.Entity.moveEntity(Entity.java:967)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-06-24 19:02:36 [sEVERE] [Minecraft-Server] Encountered an unexpected exception NoClassDefFoundError
java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1
at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863)
at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792)
at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478)
at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44)
at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557)
at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482)
at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44)
at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023)
at net.minecraft.entity.Entity.moveEntity(Entity.java:967)
at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345)
at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-06-24 19:02:37 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Raf\Dropbox\Developement\mcp\jars\.\crash-reports\crash-2013-06-24_19.02.37-server.txt
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Stopping server
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving players
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving worlds
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 0
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension -1
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 1
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 50
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
2013-06-24 19:02:47 [iNFO] [Minecraft-Client] Stopping!
2013-06-24 19:02:47 [iNFO] [sTDOUT] 
2013-06-24 19:02:47 [iNFO] [sTDOUT] SoundSystem shutting down...
2013-06-24 19:02:47 [iNFO] [sTDOUT]     Author: Paul Lamb, www.paulscode.com
2013-06-24 19:02:47 [iNFO] [sTDOUT] 
2013-06-24 19:03:20 [iNFO] [sTDERR] Someone is closing me!
2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Stopping server
2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving players
2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving worlds

 

my biome class:

package invizzble.mods.nc.biomes;

import invizzble.mods.nc.blocks.ModBlocks;
import invizzble.mods.nc.lib.BiomeReferences;
import invizzble.mods.nc.lib.BlockIds;
import net.minecraft.block.Block;
import net.minecraft.world.biome.BiomeGenBase;

public class NightmareBiome extends BiomeGenBase {

    public NightmareBiome(int id) {
        super(id);
        
        this.topBlock= (byte)ModBlocks.MoonMeteorite.blockID;
        this.fillerBlock= (byte)Block.blockDiamond.blockID;
        this.setBiomeName(BiomeReferences.NIGHTMAREBIOME_NAME);
        
        this.setMinMaxHeight(0F, 0.1F);
        this.setDisableRain();
    }

}

 

the class with the biome ids ...

package invizzble.mods.nc.biomes;

import cpw.mods.fml.common.registry.GameRegistry;
import invizzble.mods.nc.lib.BiomeReferences;
import net.minecraft.world.biome.BiomeGenBase;

public class ModBiomes {
    
    public static BiomeGenBase BiomeNightmare;
    
        public static void init(){
            BiomeNightmare= new NightmareBiome(BiomeReferences.NIGHTMAREBIOME_ID);
            
            
            GameRegistry.addBiome(BiomeNightmare);
        
        }

}

 

and my main class

package invizzble.mods.nc;



import invizzble.mods.nc.biomes.ModBiomes;
import invizzble.mods.nc.blocks.ModBlocks;
import invizzble.mods.nc.configuration.ConfigurationHandler;
import invizzble.mods.nc.configuration.registers.DimensionRegister;
import invizzble.mods.nc.configuration.registers.EventManager;
import invizzble.mods.nc.configuration.registers.LanguageRegistryBlocks;
import invizzble.mods.nc.configuration.registers.LanguageRegistryCreativetab;
import invizzble.mods.nc.configuration.registers.LanguageRegistryItem;
import invizzble.mods.nc.configuration.registers.LanguageRegistryTools;
import invizzble.mods.nc.core.handlers.FuelHandler;
import invizzble.mods.nc.creativetab.CreativeTab;
import invizzble.mods.nc.items.ModItems;
import invizzble.mods.nc.items.ModTools;
import invizzble.mods.nc.lib.References;
import invizzble.mods.nc.recipes.ShapedRecipes;
import invizzble.mods.nc.recipes.ShapelessRecipes;

import java.io.File;

import net.minecraft.creativetab.CreativeTabs;

import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.Init;
import cpw.mods.fml.common.Mod.PostInit;
import cpw.mods.fml.common.Mod.PreInit;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.network.NetworkMod;
import cpw.mods.fml.common.registry.GameRegistry;

@Mod(modid=References.MOD_ID, name=References.MOD_NAME, version= References.VERSION)
@NetworkMod(clientSideRequired=true, serverSideRequired=false)

public class NM {
    
    //creativetab
    public static CreativeTabs tabsNightmareCrafts= new CreativeTab(CreativeTabs.getNextID(), References.MOD_ID);
    
    @PreInit
    public void preInit (FMLPreInitializationEvent event){
        // Initialize the configuration
        ConfigurationHandler.init(new File(event.getModConfigurationDirectory().getAbsolutePath()+File.separator + References.CHANNEL_NAME + References.MOD_ID + ".cfg"));    
        
        //initialize the ModBlocks
        ModBlocks.init();
        
        //initialize the Mod Items
        ModItems.init();
        
        //registers modtools
        ModTools.init();

    }
    
    @Init
    public void Init(FMLInitializationEvent event){
        
        //Registers names of blocks
       
        LanguageRegistryBlocks.init();
        
       // Registers the names of the Items
        
       LanguageRegistryItem.init();
       
       //fixes the creativetab name bug
       LanguageRegistryCreativetab.init();
       
       //registers the Shapeless Recipes
       ShapelessRecipes.init();
       
       //registers Shaped Recipes
       ShapedRecipes.init();
       
       //registers FuelHandler
       GameRegistry.registerFuelHandler(new FuelHandler());
       
       //registers events
       EventManager.init();

       //registers tool Language
       LanguageRegistryTools.init();
       
       //registers dimensions
       DimensionRegister.init();
       
       //registers bioemes
       ModBiomes.init();
       
       
       
    }
    

    @PostInit
    public void PostInit(FMLPostInitializationEvent event){
        
    }
    
    


}


    


 

and the bug is that i can't use any block that isn't vanilla to generate my biome... thanks for reading anyway

Link to comment
Share on other sites

Sorry thought you meant crash-report :( here is it

 

2013-06-24 18:48:22 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.23.734 for Minecraft 1.5.2 loading
2013-06-24 18:48:22 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_21, running on Windows 8:amd64:6.2, installed at C:\Program Files\Java\jre7
2013-06-24 18:48:22 [FINE] [ForgeModLoader] Java classpath at launch is C:\development\eclipse\Minecraft\bin;C:\Users\Raf\Dropbox\Developement\mcp\lib\argo-3.2-src.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\asm-debug-all-4.1.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\bcprov-debug-jdk15on-148.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\guava-14.0-rc3.jar;C:\Users\Raf\Dropbox\Developement\mcp\lib\scala-library.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\jinput.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl_util.jar;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\minecraft.jar;C:\development\eclipse\Block\bin;C:\development\eclipse\BuildCraft\bin;C:\development\eclipse\EE3\bin;C:\development\eclipse\SC\bin;C:\development\eclipse\NC\bin
2013-06-24 18:48:22 [FINE] [ForgeModLoader] Java library path at launch is C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\natives;C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\natives
2013-06-24 18:48:22 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] All core mods are successfully located
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Discovering coremods
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file argo-small-3.2.jar present and correct in lib dir
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file guava-14.0-rc3.jar present and correct in lib dir
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file asm-all-4.1.jar present and correct in lib dir
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file bcprov-jdk15on-148.jar present and correct in lib dir
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file deobfuscation_data_1.5.2.zip present and correct in lib dir
2013-06-24 18:48:22 [FINEST] [ForgeModLoader] Found library file scala-library.jar present and correct in lib dir
2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Running coremod plugins
2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Running coremod plugin FMLCorePlugin
2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully
2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Running coremod plugin FMLForgePlugin
2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully
2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Validating minecraft
2013-06-24 18:48:23 [FINEST] [ForgeModLoader] Minecraft validated, launching...
2013-06-24 18:48:26 [iNFO] [sTDOUT] 229 recipes
2013-06-24 18:48:26 [iNFO] [sTDOUT] 27 achievements
2013-06-24 18:48:26 [iNFO] [Minecraft-Client] Setting user: tomasdude
2013-06-24 18:48:26 [iNFO] [sTDOUT] (Session ID is 2631858866370254014)
2013-06-24 18:48:26 [iNFO] [sTDERR] Client asked for parameter: server
2013-06-24 18:48:26 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2
2013-06-24 18:48:27 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization
2013-06-24 18:48:27 [iNFO] [sTDOUT] MinecraftForge v7.8.0.734 Initialized
2013-06-24 18:48:27 [iNFO] [ForgeModLoader] MinecraftForge v7.8.0.734 Initialized
2013-06-24 18:48:27 [iNFO] [sTDOUT] Replaced 85 ore recipies
2013-06-24 18:48:27 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization
2013-06-24 18:48:27 [iNFO] [ForgeModLoader] Reading custom logging properties from C:\Users\Raf\Dropbox\Developement\mcp\jars\config\logging.properties
2013-06-24 18:48:27 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer]
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\Minecraft\bin, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\lib\argo-3.2-src.jar, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\lib\asm-debug-all-4.1.jar, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\lib\bcprov-debug-jdk15on-148.jar, examining for mod candidates
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\lib\guava-14.0-rc3.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\lib\scala-library.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\jinput.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\lwjgl_util.jar
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related file at C:\Users\Raf\Dropbox\Developement\mcp\jars\bin\minecraft.jar, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\Block\bin, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\BuildCraft\bin, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\EE3\bin, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\SC\bin, examining for mod candidates
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found a minecraft related directory at C:\development\eclipse\NC\bin, examining for mod candidates
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\argo-small-3.2.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\guava-14.0-rc3.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\asm-all-4.1.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\bcprov-jdk15on-148.jar
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\deobfuscation_data_1.5.2.zip
2013-06-24 18:48:27 [FINER] [ForgeModLoader] Skipping known library file C:\Users\Raf\Dropbox\Developement\mcp\jars\lib\scala-library.jar
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully
2013-06-24 18:48:27 [iNFO] [ForgeModLoader] Searching C:\Users\Raf\Dropbox\Developement\mcp\jars\mods for mods
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Examining directory bin for potential mods
2013-06-24 18:48:27 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.block
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.core
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.item
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cofh.api.tileentity
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.modloader
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.client.registry
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.asm.transformers.deobf
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.discovery.asm
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.event
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.functions
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.modloader
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.network
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.registry
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.toposort
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.common.versioning
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.relauncher
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package cpw.mods.fml.server
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft.powercrystals
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft.powercrystals.minefactoryreloaded
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package growthcraft.powercrystals.minefactoryreloaded.api
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package ibxm
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.block.material
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.audio
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.entity.render
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.achievement
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.gui.inventory
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.mco
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.model
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.multiplayer
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.particle
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.culling
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.entity
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.texture
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.renderer.tileentity
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.settings
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.stats
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.client.texturepacks
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.command
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.crash
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.creativetab
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.dispenser
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.enchantment
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.ai
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.boss
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.effect
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.item
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.monster
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.passive
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.player
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.entity.projectile
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.inventory
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.item.crafting
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.logging
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.nbt
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.packet
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.network.rcon
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.pathfinding
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.potion
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.profiler
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.scoreboard
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.dedicated
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.gui
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.integrated
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.server.management
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.src
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.stats
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.tileentity
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.util
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.village
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.biome
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.chunk.storage
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.demo
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.feature
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.layer
2013-06-24 18:48:27 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.gen.structure
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraft.world.storage
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.classloading
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.event.sound
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.client.model.obj
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common.network
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.common.network.packet
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.brewing
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.item
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.living
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.minecart
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.entity.player
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.terraingen
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.event.world
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.liquids
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.oredict
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package net.minecraftforge.transformers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package paulscode
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package paulscode.sound.codecs
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api.crafting
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api.item
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package thermalexpansion.api.tileentity
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file argo-3.2-src.jar for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container argo-3.2-src.jar appears to be missing an mcmod.info file
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file asm-debug-all-4.1.jar for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container asm-debug-all-4.1.jar appears to be missing an mcmod.info file
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file bcprov-debug-jdk15on-148.jar for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container bcprov-debug-jdk15on-148.jar appears to be missing an mcmod.info file
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining file minecraft.jar for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] The mod container minecraft.jar appears to be missing an mcmod.info file
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.block
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod invizzble.mods.blocks.Blocks
2013-06-24 18:48:28 [FINEST] [bC] Parsed dependency info : [Forge@[7.7.1.650,)] [Forge@[7.7.1.650,)] []
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.command
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.configuration
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.configuration.registers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core.handlers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core.proxy
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.core.util
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.creativetab
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.entitys
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.entitys.render
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.item
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.lib
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.recipes
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.world
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.blocks.world.gen
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.armor
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.effects
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.BC.textures.models
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.armor
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.effects
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.models
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.blueprints
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.bptblocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.core
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.filler
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.fuels
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.gates
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.inventory
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.power
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.recipes
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.tools
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.api.transport
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftBuilders
2013-06-24 18:48:28 [FINEST] [buildCraft|Builders] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] []
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftCore
2013-06-24 18:48:28 [FINEST] [buildCraft|Core] Parsed dependency info : [Forge@[7.7.2.682,)] [Forge@[7.7.2.682,)] []
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftEnergy
2013-06-24 18:48:28 [FINEST] [buildCraft|Energy] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] []
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftFactory
2013-06-24 18:48:28 [FINEST] [buildCraft|Factory] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] []
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftSilicon
2013-06-24 18:48:28 [FINEST] [buildCraft|Silicon] Parsed dependency info : [buildCraft|Transport@VERSION] [buildCraft|Transport@VERSION] []
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod buildcraft.BuildCraftTransport
2013-06-24 18:48:28 [FINEST] [buildCraft|Transport] Parsed dependency info : [buildCraft|Core@VERSION] [buildCraft|Core@VERSION] []
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.builders
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.builders.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.builders.network
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.blueprints
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui.buttons
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui.slots
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.gui.tooltips
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.inventory
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.network
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.proxy
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.render
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.triggers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.core.utils
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy.render
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.energy.worldgen
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory.network
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.factory.render
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.silicon
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.silicon.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.silicon.network
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.blueprints
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.network
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.pipes
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.render
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.triggers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package buildcraft.transport.utils
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package changelog
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.entities
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package gfx.buildcraft.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package lang
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package lang.buildcraft
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.blocks.fillerPatterns
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.items.icons
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.buildcraft.textures.items.triggers
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.block
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.audio
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.gui.inventory
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.model
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.renderer
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.renderer.item
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.client.renderer.tileentity
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.command
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.configuration
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.addons
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.handlers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.proxy
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.core.util
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.creativetab
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.emc
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod com.pahimar.ee3.EquivalentExchange3
2013-06-24 18:48:28 [FINEST] [EE3] Parsed dependency info : [Forge@[7.7.1.650,)] [Forge@[7.7.1.650,)] []
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.event
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.inventory
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.item
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.item.crafting
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.lib
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.network
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.network.packet
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.recipe
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package com.pahimar.ee3.tileentity
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.lang
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.models
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.sound
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.effects
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.logo
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.models
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.effects
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.logo
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.ee3.textures.xcf.models
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC.configuration
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC.item
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.SC.lib
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Identified an FMLMod type mod invizzble.mods.SC.SC
2013-06-24 18:48:28 [FINEST] [sC] Parsed dependency info : [] [] []
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.armor
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.effects
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.gui
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package mods.SC.textures.models
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Examining directory bin for potential mods
2013-06-24 18:48:28 [FINE] [ForgeModLoader] Found an mcmod.info file in directory bin
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.hooks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.info
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.objects
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.objects.info
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.objects.pack
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.refs
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.refs.heads
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package .git.refs.tags
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.biomes
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.blocks
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.configuration
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.configuration.registers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.core
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.core.handlers
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.creativetab
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.dimension
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.items
2013-06-24 18:48:28 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.lib
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Identified an FMLMod type mod invizzble.mods.nc.NM
2013-06-24 18:48:29 [FINEST] [NC] Parsed dependency info : [] [] []
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.recipes
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.world
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package invizzble.mods.nc.world.gen
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.armor
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.blocks
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.effects
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.gui
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.items
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Recursing into package mods.NC.textures.models
2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 13 mods to load
2013-06-24 18:48:29 [FINER] [ForgeModLoader] Received a system property request ''
2013-06-24 18:48:29 [FINER] [ForgeModLoader] System property request managing the state of 0 mods
2013-06-24 18:48:29 [FINE] [ForgeModLoader] After merging, found state information for 0 mods
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Reloading logging properties from C:\Users\Raf\Dropbox\Developement\mcp\jars\config\logging.properties
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Reloaded logging properties
2013-06-24 18:48:29 [FINE] [mcp] Mod Logging channel mcp configured at default level.
2013-06-24 18:48:29 [iNFO] [mcp] Activating mod mcp
2013-06-24 18:48:29 [FINE] [FML] Mod Logging channel FML configured at default level.
2013-06-24 18:48:29 [iNFO] [FML] Activating mod FML
2013-06-24 18:48:29 [FINE] [Forge] Mod Logging channel Forge configured at default level.
2013-06-24 18:48:29 [iNFO] [Forge] Activating mod Forge
2013-06-24 18:48:29 [FINE] [bC] Enabling mod BC
2013-06-24 18:48:29 [FINE] [bC] Mod Logging channel BC configured at default level.
2013-06-24 18:48:29 [iNFO] [bC] Activating mod BC
2013-06-24 18:48:29 [FINE] [buildCraft|Builders] Enabling mod BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [buildCraft|Builders] Mod Logging channel BuildCraft|Builders configured at default level.
2013-06-24 18:48:29 [iNFO] [buildCraft|Builders] Activating mod BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [buildCraft|Core] Enabling mod BuildCraft|Core
2013-06-24 18:48:29 [FINE] [buildCraft|Core] Mod Logging channel BuildCraft|Core configured at default level.
2013-06-24 18:48:29 [iNFO] [buildCraft|Core] Activating mod BuildCraft|Core
2013-06-24 18:48:29 [FINE] [buildCraft|Energy] Enabling mod BuildCraft|Energy
2013-06-24 18:48:29 [FINE] [buildCraft|Energy] Mod Logging channel BuildCraft|Energy configured at default level.
2013-06-24 18:48:29 [iNFO] [buildCraft|Energy] Activating mod BuildCraft|Energy
2013-06-24 18:48:29 [FINE] [buildCraft|Factory] Enabling mod BuildCraft|Factory
2013-06-24 18:48:29 [FINE] [buildCraft|Factory] Mod Logging channel BuildCraft|Factory configured at default level.
2013-06-24 18:48:29 [iNFO] [buildCraft|Factory] Activating mod BuildCraft|Factory
2013-06-24 18:48:29 [FINE] [buildCraft|Silicon] Enabling mod BuildCraft|Silicon
2013-06-24 18:48:29 [FINE] [buildCraft|Silicon] Mod Logging channel BuildCraft|Silicon configured at default level.
2013-06-24 18:48:29 [iNFO] [buildCraft|Silicon] Activating mod BuildCraft|Silicon
2013-06-24 18:48:29 [FINE] [buildCraft|Transport] Enabling mod BuildCraft|Transport
2013-06-24 18:48:29 [FINE] [buildCraft|Transport] Mod Logging channel BuildCraft|Transport configured at default level.
2013-06-24 18:48:29 [iNFO] [buildCraft|Transport] Activating mod BuildCraft|Transport
2013-06-24 18:48:29 [FINE] [EE3] Enabling mod EE3
2013-06-24 18:48:29 [FINE] [EE3] Mod Logging channel EE3 configured at default level.
2013-06-24 18:48:29 [iNFO] [EE3] Activating mod EE3
2013-06-24 18:48:29 [FINE] [sC] Enabling mod SC
2013-06-24 18:48:29 [FINE] [sC] Mod Logging channel SC configured at default level.
2013-06-24 18:48:29 [iNFO] [sC] Activating mod SC
2013-06-24 18:48:29 [FINE] [NC] Enabling mod NC
2013-06-24 18:48:29 [FINE] [NC] Mod Logging channel NC configured at default level.
2013-06-24 18:48:29 [iNFO] [NC] Activating mod NC
2013-06-24 18:48:29 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied
2013-06-24 18:48:29 [FINER] [ForgeModLoader] All mod requirements are satisfied
2013-06-24 18:48:29 [FINER] [ForgeModLoader] Sorting mods into an ordered list
2013-06-24 18:48:29 [FINER] [ForgeModLoader] Mod sorting completed successfully
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Mod sorting data
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BC(BlockCraft:0.1): bin (required-after:Forge@[7.7.1.650,))
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Core(BuildCraft:@VERSION@): bin (required-after:Forge@[7.7.2.682,))
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Builders(BC Builders:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Energy(BC Energy:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Factory(BC Factory:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Transport(BC Transport:@VERSION@): bin (required-after:BuildCraft|Core@@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Silicon(BC Silicon:@VERSION@): bin (required-after:BuildCraft|Transport@@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	EE3(Equivalent Exchange 3:@VERSION@ (build @BUILD_NUMBER@)): bin (required-after:Forge@[7.7.1.650,))
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	SC(scientomic craft:0.0.1): bin ()
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	NC(Nightmare Craft:alpha 1.0): bin ()
2013-06-24 18:48:29 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp
2013-06-24 18:48:29 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp
2013-06-24 18:48:29 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML
2013-06-24 18:48:29 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML
2013-06-24 18:48:29 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge
2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Registering Forge Packet Handler
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod Forge to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod Forge accepts its own version (7.8.0.734)
2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler
2013-06-24 18:48:29 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge
2013-06-24 18:48:29 [FINEST] [bC] Sending event FMLConstructionEvent to mod BC
2013-06-24 18:48:29 [FINER] [bC] The mod BC is expecting signature @FINGERPRINT@ for source bin, however there is no signature matching that description
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BC to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BC accepts its own version (0.1)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BC
2013-06-24 18:48:29 [sEVERE] [bC] The copy of BlockCraft that you are running has been modified from the original, and unpredictable things may happen. Please consider re-downloading the original version of the mod.
2013-06-24 18:48:29 [FINEST] [bC] Sent event FMLConstructionEvent to mod BC
2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sending event FMLConstructionEvent to mod BuildCraft|Core
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Core to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Core accepts its own version (@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Core
2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sent event FMLConstructionEvent to mod BuildCraft|Core
2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sending event FMLConstructionEvent to mod BuildCraft|Builders
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Builders to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Builders accepts its own version (@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Builders
2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sent event FMLConstructionEvent to mod BuildCraft|Builders
2013-06-24 18:48:29 [FINEST] [buildCraft|Energy] Sending event FMLConstructionEvent to mod BuildCraft|Energy
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Energy to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Energy accepts its own version (@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Energy
2013-06-24 18:48:29 [FINEST] [buildCraft|Energy] Sent event FMLConstructionEvent to mod BuildCraft|Energy
2013-06-24 18:48:29 [FINEST] [buildCraft|Factory] Sending event FMLConstructionEvent to mod BuildCraft|Factory
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Factory to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Factory accepts its own version (@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Factory
2013-06-24 18:48:29 [FINEST] [buildCraft|Factory] Sent event FMLConstructionEvent to mod BuildCraft|Factory
2013-06-24 18:48:29 [FINEST] [buildCraft|Transport] Sending event FMLConstructionEvent to mod BuildCraft|Transport
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Transport to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Transport accepts its own version (@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Transport
2013-06-24 18:48:29 [FINEST] [buildCraft|Transport] Sent event FMLConstructionEvent to mod BuildCraft|Transport
2013-06-24 18:48:29 [FINEST] [buildCraft|Silicon] Sending event FMLConstructionEvent to mod BuildCraft|Silicon
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod BuildCraft|Silicon to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod BuildCraft|Silicon accepts its own version (@VERSION@)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into BuildCraft|Silicon
2013-06-24 18:48:29 [FINEST] [buildCraft|Silicon] Sent event FMLConstructionEvent to mod BuildCraft|Silicon
2013-06-24 18:48:29 [FINEST] [EE3] Sending event FMLConstructionEvent to mod EE3
2013-06-24 18:48:29 [FINER] [EE3] The mod EE3 is expecting signature @FINGERPRINT@ for source bin, however there is no signature matching that description
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod EE3 to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod EE3 accepts its own version (@VERSION@ (build @BUILD_NUMBER@))
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into EE3
2013-06-24 18:48:29 [sEVERE] [EE3] The copy of Equivalent Exchange 3 that you are running has been modified from the original, and unpredictable things may happen. Please consider re-downloading the original version of the mod.
2013-06-24 18:48:29 [FINEST] [EE3] Sent event FMLConstructionEvent to mod EE3
2013-06-24 18:48:29 [FINEST] [sC] Sending event FMLConstructionEvent to mod SC
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into SC
2013-06-24 18:48:29 [FINEST] [sC] Sent event FMLConstructionEvent to mod SC
2013-06-24 18:48:29 [FINEST] [NC] Sending event FMLConstructionEvent to mod NC
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] Testing mod NC to verify it accepts its own version in a remote connection
2013-06-24 18:48:29 [FINEST] [ForgeModLoader] The mod NC accepts its own version (alpha 1.0)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into NC
2013-06-24 18:48:29 [FINEST] [NC] Sent event FMLConstructionEvent to mod NC
2013-06-24 18:48:29 [FINE] [ForgeModLoader] Mod signature data
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	mcp(Minecraft Coder Pack:7.51): minecraft.jar (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	FML(Forge Mod Loader:5.2.23.734): coremods (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	Forge(Minecraft Forge:7.8.0.734): coremods (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BC(BlockCraft:0.1): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Core(BuildCraft:@VERSION@): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Builders(BC Builders:@VERSION@): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Energy(BC Energy:@VERSION@): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Factory(BC Factory:@VERSION@): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Transport(BC Transport:@VERSION@): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	BuildCraft|Silicon(BC Silicon:@VERSION@): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	EE3(Equivalent Exchange 3:@VERSION@ (build @BUILD_NUMBER@)): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	SC(scientomic craft:0.0.1): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINE] [ForgeModLoader] 	NC(Nightmare Craft:alpha 1.0): bin (NO VALID CERTIFICATE FOUND)
2013-06-24 18:48:29 [FINEST] [mcp] Sending event FMLPreInitializationEvent to mod mcp
2013-06-24 18:48:29 [FINEST] [mcp] Sent event FMLPreInitializationEvent to mod mcp
2013-06-24 18:48:29 [FINEST] [FML] Sending event FMLPreInitializationEvent to mod FML
2013-06-24 18:48:29 [FINEST] [FML] Sent event FMLPreInitializationEvent to mod FML
2013-06-24 18:48:29 [FINEST] [Forge] Sending event FMLPreInitializationEvent to mod Forge
2013-06-24 18:48:29 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0
2013-06-24 18:48:29 [FINEST] [Forge] Sent event FMLPreInitializationEvent to mod Forge
2013-06-24 18:48:29 [FINEST] [bC] Sending event FMLPreInitializationEvent to mod BC
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/cs_CZ.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/cy_GB.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/da_DK.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/de_DE.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/en_US.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/es_ES.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/fi_FI.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/fr_FR.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/it_IT.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/ja_JP.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/la_IT.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/nl_NL.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/nb_NO.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/pl_PL.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/pt_BR.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/pt_PT.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/ru_RU.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/sk_SK.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/sr_RS.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/sv_SE.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/tr_TR.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/zh_CN.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/zh_TW.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [sEVERE] [bC] The language resource /mods/blockcraft/lang/el_GR.xml cannot be located on the classpath. This is a programming error.
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1000) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1001) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1002) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1003) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1004) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1005) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1006) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1007) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemClayIngot(7106) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemCoockedFlowerPot(7107) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemUncoockedFlowerPot(7108) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemFiryClayIngot(7109) owned by BC
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item invizzble.mods.blocks.item.ItemMysticalClayIngot(7110) owned by BC
2013-06-24 18:48:29 [FINEST] [bC] Sent event FMLPreInitializationEvent to mod BC
2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sending event FMLPreInitializationEvent to mod BuildCraft|Core
2013-06-24 18:48:29 [iNFO] [buildcraft] Beginning version check
2013-06-24 18:48:29 [iNFO] [buildcraft] Starting BuildCraft @VERSION@ (:@BUILD_NUMBER@)
2013-06-24 18:48:29 [iNFO] [buildcraft] Copyright (c) SpaceToad, 2011
2013-06-24 18:48:29 [iNFO] [buildcraft] http://www.mod-buildcraft.com
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemWrench(19362) owned by BuildCraft|Core
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemSpring(1522) owned by BuildCraft|Core
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19356) owned by BuildCraft|Core
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19357) owned by BuildCraft|Core
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19358) owned by BuildCraft|Core
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19359) owned by BuildCraft|Core
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19360) owned by BuildCraft|Core
2013-06-24 18:48:29 [FINEST] [buildCraft|Core] Sent event FMLPreInitializationEvent to mod BuildCraft|Core
2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sending event FMLPreInitializationEvent to mod BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.builders.ItemBptTemplate(19361) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.builders.ItemBptBluePrint(19374) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1504) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1518) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1505) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1507) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1508) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1515) owned by BuildCraft|Builders
2013-06-24 18:48:29 [FINEST] [buildCraft|Builders] Sent event FMLPreInitializationEvent to mod BuildCraft|Builders
2013-06-24 18:48:29 [FINEST] [buildCraft|Energy] Sending event FMLPreInitializationEvent to mod BuildCraft|Energy
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.energy.ItemEngine(1510) owned by BuildCraft|Energy
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1521) owned by BuildCraft|Energy
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1520) owned by BuildCraft|Energy
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19364) owned by BuildCraft|Energy
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.energy.ItemBucketOil(19363) owned by BuildCraft|Energy
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19366) owned by BuildCraft|Energy
2013-06-24 18:48:30 [FINEST] [buildCraft|Energy] Sent event FMLPreInitializationEvent to mod BuildCraft|Energy
2013-06-24 18:48:30 [FINEST] [buildCraft|Factory] Sending event FMLPreInitializationEvent to mod BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1500) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1501) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1502) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1509) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1503) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1512) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1511) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1514) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1519) owned by BuildCraft|Factory
2013-06-24 18:48:30 [FINEST] [buildCraft|Factory] Sent event FMLPreInitializationEvent to mod BuildCraft|Factory
2013-06-24 18:48:30 [FINEST] [buildCraft|Transport] Sending event FMLPreInitializationEvent to mod BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19365) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(1513) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19416) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19423) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19417) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19418) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19419) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19420) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19421) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19422) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19436) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19437) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19438) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19439) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19440) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19443) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19456) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19458) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19460) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19480) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19476) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19477) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19478) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPipe(19479) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19369) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19370) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19371) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBuildCraft(19372) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemGate(19367) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemGate(19396) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemFacade(19397) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.transport.ItemPlug(19398) owned by BuildCraft|Transport
2013-06-24 18:48:30 [FINEST] [buildCraft|Transport] Sent event FMLPreInitializationEvent to mod BuildCraft|Transport
2013-06-24 18:48:30 [FINEST] [buildCraft|Silicon] Sending event FMLPreInitializationEvent to mod BuildCraft|Silicon
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemBlockBuildCraft(1516) owned by BuildCraft|Silicon
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.silicon.ItemLaserTable(1517) owned by BuildCraft|Silicon
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item buildcraft.core.ItemRedstoneChipset(19373) owned by BuildCraft|Silicon
2013-06-24 18:48:30 [FINEST] [buildCraft|Silicon] Sent event FMLPreInitializationEvent to mod BuildCraft|Silicon
2013-06-24 18:48:30 [FINEST] [EE3] Sending event FMLPreInitializationEvent to mod EE3
2013-06-24 18:48:30 [iNFO] [EE3] Initializing remote version check against remote version authority, located at https://raw.github.com/pahimar/Equivalent-Exchange-3/master/version.xml
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2451) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2454) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2455) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(2456) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemMiniumShard(27000) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemInertStone(27001) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemMiniumStone(27002) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemPhilosophersStone(27003) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemAlchemicalDust(27004) owned by EE3
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item com.pahimar.ee3.item.ItemAlchemicalBag(27005) owned by EE3
2013-06-24 18:48:30 [FINEST] [EE3] Sent event FMLPreInitializationEvent to mod EE3
2013-06-24 18:48:30 [FINEST] [sC] Sending event FMLPreInitializationEvent to mod SC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.SC.item.ItemSciPad(9756) owned by SC
2013-06-24 18:48:30 [FINEST] [sC] Sent event FMLPreInitializationEvent to mod SC
2013-06-24 18:48:30 [FINEST] [NC] Sending event FMLPreInitializationEvent to mod NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(800) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(801) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(802) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(803) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(804) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(805) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item net.minecraft.item.ItemBlock(806) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemNightMareDiamond(28256) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemCreepyCoal(28257) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkOrb(28258) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemNightMareFuel(28259) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkEssence(28260) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkenedIngot(28261) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemNightmareDust(28262) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemFullMoonPowder(28263) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ItemDarkStick(28264) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmarePickaxe(28456) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareSword(28457) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareHoe(28459) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareShovel(28461) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareAxe(28460) owned by NC
2013-06-24 18:48:30 [FINE] [fml.ItemTracker] Adding item invizzble.mods.nc.items.ToolNightmareBow(28462) owned by NC
2013-06-24 18:48:30 [FINEST] [NC] Sent event FMLPreInitializationEvent to mod NC
2013-06-24 18:48:30 [iNFO] [EE3] A new Equivalent Exchange 3 version exists (pre1h) for Minecraft 1.5.2. Get it here: http://goo.gl/Ria2V
2013-06-24 18:48:31 [iNFO] [sTDOUT] 
2013-06-24 18:48:31 [iNFO] [sTDOUT] Starting up SoundSystem...
2013-06-24 18:48:31 [iNFO] [sTDOUT] Initializing LWJGL OpenAL
2013-06-24 18:48:31 [iNFO] [sTDOUT]     (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
2013-06-24 18:48:31 [iNFO] [sTDOUT] OpenAL initialized.
2013-06-24 18:48:31 [WARNING] [buildcraft] Using outdated version [@VERSION@ (build:@BUILD_NUMBER@)] for Minecraft 1.5.2. Consider updating.
2013-06-24 18:48:32 [iNFO] [sTDOUT] 
2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ ClayTable.png, but that file does not exist. Ignoring.
2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Nightmare Soil.png, but that file does not exist. Ignoring.
2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ClayChest.png, but that file does not exist. Ignoring.
2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Unholy Stone.png, but that file does not exist. Ignoring.
2013-06-24 18:48:32 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/DeClayInator.png, but that file does not exist. Ignoring.
2013-06-24 18:48:32 [iNFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled
2013-06-24 18:48:32 [iNFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil_flow.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt
2013-06-24 18:48:32 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt
2013-06-24 18:48:33 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Nightmare Bow.png, but that file does not exist. Ignoring.
2013-06-24 18:48:33 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/items/fuel.txt
2013-06-24 18:48:33 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt
2013-06-24 18:48:33 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt
2013-06-24 18:48:33 [FINEST] [mcp] Sending event FMLInitializationEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [mcp] Sent event FMLInitializationEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [FML] Sending event FMLInitializationEvent to mod FML
2013-06-24 18:48:33 [FINEST] [FML] Sent event FMLInitializationEvent to mod FML
2013-06-24 18:48:33 [FINEST] [Forge] Sending event FMLInitializationEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [Forge] Sent event FMLInitializationEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [bC] Sending event FMLInitializationEvent to mod BC
2013-06-24 18:48:33 [FINEST] [bC] Sent event FMLInitializationEvent to mod BC
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event FMLInitializationEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcRobot as BuildCraft|Core.bcRobot
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcLaser as BuildCraft|Core.bcLaser
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Automatically registered mod BuildCraft|Core entity bcEnergyLaser as BuildCraft|Core.bcEnergyLaser
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event FMLInitializationEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event FMLInitializationEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event FMLInitializationEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event FMLInitializationEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event FMLInitializationEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event FMLInitializationEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event FMLInitializationEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event FMLInitializationEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event FMLInitializationEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event FMLInitializationEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event FMLInitializationEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [EE3] Sending event FMLInitializationEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [EE3] Sent event FMLInitializationEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [sC] Sending event FMLInitializationEvent to mod SC
2013-06-24 18:48:33 [FINEST] [sC] Sent event FMLInitializationEvent to mod SC
2013-06-24 18:48:33 [FINEST] [NC] Sending event FMLInitializationEvent to mod NC
2013-06-24 18:48:33 [FINEST] [NC] Sent event FMLInitializationEvent to mod NC
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod mcp
2013-06-24 18:48:33 [FINEST] [mcp] Sending event IMCEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [mcp] Sent event IMCEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod FML
2013-06-24 18:48:33 [FINEST] [FML] Sending event IMCEvent to mod FML
2013-06-24 18:48:33 [FINEST] [FML] Sent event IMCEvent to mod FML
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod Forge
2013-06-24 18:48:33 [FINEST] [Forge] Sending event IMCEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [Forge] Sent event IMCEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BC
2013-06-24 18:48:33 [FINEST] [bC] Sending event IMCEvent to mod BC
2013-06-24 18:48:33 [FINEST] [bC] Sent event IMCEvent to mod BC
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event IMCEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event IMCEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event IMCEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event IMCEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event IMCEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event IMCEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event IMCEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event IMCEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event IMCEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event IMCEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event IMCEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event IMCEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod EE3
2013-06-24 18:48:33 [FINEST] [EE3] Sending event IMCEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [EE3] Sent event IMCEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod SC
2013-06-24 18:48:33 [FINEST] [sC] Sending event IMCEvent to mod SC
2013-06-24 18:48:33 [FINEST] [sC] Sent event IMCEvent to mod SC
2013-06-24 18:48:33 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod NC
2013-06-24 18:48:33 [FINEST] [NC] Sending event IMCEvent to mod NC
2013-06-24 18:48:33 [FINEST] [NC] Sent event IMCEvent to mod NC
2013-06-24 18:48:33 [FINEST] [mcp] Sending event FMLPostInitializationEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [mcp] Sent event FMLPostInitializationEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [FML] Sending event FMLPostInitializationEvent to mod FML
2013-06-24 18:48:33 [FINEST] [FML] Sent event FMLPostInitializationEvent to mod FML
2013-06-24 18:48:33 [FINEST] [Forge] Sending event FMLPostInitializationEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [Forge] Sent event FMLPostInitializationEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [bC] Sending event FMLPostInitializationEvent to mod BC
2013-06-24 18:48:33 [FINEST] [bC] Sent event FMLPostInitializationEvent to mod BC
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event FMLPostInitializationEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event FMLPostInitializationEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event FMLPostInitializationEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event FMLPostInitializationEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event FMLPostInitializationEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event FMLPostInitializationEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event FMLPostInitializationEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINE] [buildcraft] NEI not detected.
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event FMLPostInitializationEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event FMLPostInitializationEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event FMLPostInitializationEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event FMLPostInitializationEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event FMLPostInitializationEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [EE3] Sending event FMLPostInitializationEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [EE3] Sent event FMLPostInitializationEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [sC] Sending event FMLPostInitializationEvent to mod SC
2013-06-24 18:48:33 [FINEST] [sC] Sent event FMLPostInitializationEvent to mod SC
2013-06-24 18:48:33 [FINEST] [NC] Sending event FMLPostInitializationEvent to mod NC
2013-06-24 18:48:33 [FINEST] [NC] Sent event FMLPostInitializationEvent to mod NC
2013-06-24 18:48:33 [FINEST] [mcp] Sending event FMLLoadCompleteEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [mcp] Sent event FMLLoadCompleteEvent to mod mcp
2013-06-24 18:48:33 [FINEST] [FML] Sending event FMLLoadCompleteEvent to mod FML
2013-06-24 18:48:33 [FINEST] [FML] Sent event FMLLoadCompleteEvent to mod FML
2013-06-24 18:48:33 [FINEST] [Forge] Sending event FMLLoadCompleteEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [Forge] Sent event FMLLoadCompleteEvent to mod Forge
2013-06-24 18:48:33 [FINEST] [bC] Sending event FMLLoadCompleteEvent to mod BC
2013-06-24 18:48:33 [FINEST] [bC] Sent event FMLLoadCompleteEvent to mod BC
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sending event FMLLoadCompleteEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [buildCraft|Core] Sent event FMLLoadCompleteEvent to mod BuildCraft|Core
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sending event FMLLoadCompleteEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Builders] Sent event FMLLoadCompleteEvent to mod BuildCraft|Builders
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sending event FMLLoadCompleteEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Energy] Sent event FMLLoadCompleteEvent to mod BuildCraft|Energy
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sending event FMLLoadCompleteEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [buildCraft|Factory] Sent event FMLLoadCompleteEvent to mod BuildCraft|Factory
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sending event FMLLoadCompleteEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Transport] Sent event FMLLoadCompleteEvent to mod BuildCraft|Transport
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sending event FMLLoadCompleteEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [buildCraft|Silicon] Sent event FMLLoadCompleteEvent to mod BuildCraft|Silicon
2013-06-24 18:48:33 [FINEST] [EE3] Sending event FMLLoadCompleteEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [EE3] Sent event FMLLoadCompleteEvent to mod EE3
2013-06-24 18:48:33 [FINEST] [sC] Sending event FMLLoadCompleteEvent to mod SC
2013-06-24 18:48:33 [FINEST] [sC] Sent event FMLLoadCompleteEvent to mod SC
2013-06-24 18:48:33 [FINEST] [NC] Sending event FMLLoadCompleteEvent to mod NC
2013-06-24 18:48:33 [FINEST] [NC] Sent event FMLLoadCompleteEvent to mod NC
2013-06-24 18:48:33 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 13 mods
2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ ClayTable.png, but that file does not exist. Ignoring.
2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Nightmare Soil.png, but that file does not exist. Ignoring.
2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/ClayChest.png, but that file does not exist. Ignoring.
2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Unholy Stone.png, but that file does not exist. Ignoring.
2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/BC/textures/blocks/DeClayInator.png, but that file does not exist. Ignoring.
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil_flow.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/blocks/oil.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt
2013-06-24 18:48:34 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/Nightmare Bow.png, but that file does not exist. Ignoring.
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: mods/buildcraft/textures/items/fuel.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt
2013-06-24 18:48:34 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting level New World
2013-06-24 18:48:59 [iNFO] [sTDOUT] Attempt 1...
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\data
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\data\villages.dat
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\data
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\forcedchunks.dat
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\data
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\forcedchunks.dat
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\forcedchunks.dat
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_mcr
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_old
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\data
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\forcedchunks.dat
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-1.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-2.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.0.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-1.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-2.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-3.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.0.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-1.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-2.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.0.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-1.mca
2013-06-24 18:48:59 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.0.mca
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\players
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\players\tomasdude.dat
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-1.mca
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.0.mca
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.1.mca
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.0.mca
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.1.mca
2013-06-24 18:49:00 [iNFO] [sTDOUT] Deleting .\saves\New World\session.lock
2013-06-24 18:49:03 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2
2013-06-24 18:49:03 [iNFO] [Minecraft-Server] Generating keypair
2013-06-24 18:49:04 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp
2013-06-24 18:49:04 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp
2013-06-24 18:49:04 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML
2013-06-24 18:49:04 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML
2013-06-24 18:49:04 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge
2013-06-24 18:49:04 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge
2013-06-24 18:49:04 [FINEST] [bC] Sending event FMLServerAboutToStartEvent to mod BC
2013-06-24 18:49:04 [FINEST] [bC] Sent event FMLServerAboutToStartEvent to mod BC
2013-06-24 18:49:04 [FINEST] [buildCraft|Core] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Core
2013-06-24 18:49:04 [FINEST] [buildCraft|Core] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Core
2013-06-24 18:49:04 [FINEST] [buildCraft|Builders] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Builders
2013-06-24 18:49:04 [FINEST] [buildCraft|Builders] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Builders
2013-06-24 18:49:04 [FINEST] [buildCraft|Energy] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Energy
2013-06-24 18:49:04 [FINEST] [buildCraft|Energy] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Energy
2013-06-24 18:49:04 [FINEST] [buildCraft|Factory] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Factory
2013-06-24 18:49:04 [FINEST] [buildCraft|Factory] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Factory
2013-06-24 18:49:04 [FINEST] [buildCraft|Transport] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Transport
2013-06-24 18:49:04 [FINEST] [buildCraft|Transport] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Transport
2013-06-24 18:49:04 [FINEST] [buildCraft|Silicon] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Silicon
2013-06-24 18:49:04 [FINEST] [buildCraft|Silicon] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Silicon
2013-06-24 18:49:04 [FINEST] [EE3] Sending event FMLServerAboutToStartEvent to mod EE3
2013-06-24 18:49:04 [FINEST] [EE3] Sent event FMLServerAboutToStartEvent to mod EE3
2013-06-24 18:49:04 [FINEST] [sC] Sending event FMLServerAboutToStartEvent to mod SC
2013-06-24 18:49:04 [FINEST] [sC] Sent event FMLServerAboutToStartEvent to mod SC
2013-06-24 18:49:04 [FINEST] [NC] Sending event FMLServerAboutToStartEvent to mod NC
2013-06-24 18:49:04 [FINEST] [NC] Sent event FMLServerAboutToStartEvent to mod NC
2013-06-24 18:49:04 [iNFO] [Minecraft-Server] Converting map!
2013-06-24 18:49:04 [iNFO] [Minecraft-Server] Scanning folders...
2013-06-24 18:49:04 [iNFO] [Minecraft-Server] Total conversion count is 0
2013-06-24 18:49:04 [FINE] [fml.ItemTracker] The difference set is equal
2013-06-24 18:49:04 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00)
2013-06-24 18:49:05 [WARNING] [Minecraft-Server] Unable to find spawn biome
2013-06-24 18:49:10 [iNFO] [ForgeModLoader] Loading dimension 50 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00)
2013-06-24 18:49:10 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00)
2013-06-24 18:49:10 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@3199bb00)
2013-06-24 18:49:10 [iNFO] [Minecraft-Server] Preparing start region for level 0
2013-06-24 18:49:11 [iNFO] [Minecraft-Server] Preparing spawn area: 5%
2013-06-24 18:49:12 [iNFO] [Minecraft-Server] Preparing spawn area: 14%
2013-06-24 18:49:13 [iNFO] [Minecraft-Server] Preparing spawn area: 26%
2013-06-24 18:49:14 [iNFO] [Minecraft-Server] Preparing spawn area: 40%
2013-06-24 18:49:15 [iNFO] [Minecraft-Server] Preparing spawn area: 52%
2013-06-24 18:49:16 [iNFO] [Minecraft-Server] Preparing spawn area: 61%
2013-06-24 18:49:17 [iNFO] [Minecraft-Server] Preparing spawn area: 71%
2013-06-24 18:49:18 [iNFO] [Minecraft-Server] Preparing spawn area: 82%
2013-06-24 18:49:19 [iNFO] [Minecraft-Server] Preparing spawn area: 92%
2013-06-24 18:49:20 [iNFO] [Minecraft-Server] Preparing spawn area: 98%
2013-06-24 18:49:20 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp
2013-06-24 18:49:20 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp
2013-06-24 18:49:20 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML
2013-06-24 18:49:20 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML
2013-06-24 18:49:20 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge
2013-06-24 18:49:20 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge
2013-06-24 18:49:20 [FINEST] [bC] Sending event FMLServerStartingEvent to mod BC
2013-06-24 18:49:20 [FINEST] [bC] Sent event FMLServerStartingEvent to mod BC
2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sending event FMLServerStartingEvent to mod BuildCraft|Core
2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sent event FMLServerStartingEvent to mod BuildCraft|Core
2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sending event FMLServerStartingEvent to mod BuildCraft|Builders
2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sent event FMLServerStartingEvent to mod BuildCraft|Builders
2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sending event FMLServerStartingEvent to mod BuildCraft|Energy
2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sent event FMLServerStartingEvent to mod BuildCraft|Energy
2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sending event FMLServerStartingEvent to mod BuildCraft|Factory
2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sent event FMLServerStartingEvent to mod BuildCraft|Factory
2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sending event FMLServerStartingEvent to mod BuildCraft|Transport
2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sent event FMLServerStartingEvent to mod BuildCraft|Transport
2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartingEvent to mod BuildCraft|Silicon
2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartingEvent to mod BuildCraft|Silicon
2013-06-24 18:49:20 [FINEST] [EE3] Sending event FMLServerStartingEvent to mod EE3
2013-06-24 18:49:20 [FINEST] [EE3] Sent event FMLServerStartingEvent to mod EE3
2013-06-24 18:49:20 [FINEST] [sC] Sending event FMLServerStartingEvent to mod SC
2013-06-24 18:49:20 [FINEST] [sC] Sent event FMLServerStartingEvent to mod SC
2013-06-24 18:49:20 [FINEST] [NC] Sending event FMLServerStartingEvent to mod NC
2013-06-24 18:49:20 [FINEST] [NC] Sent event FMLServerStartingEvent to mod NC
2013-06-24 18:49:20 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp
2013-06-24 18:49:20 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp
2013-06-24 18:49:20 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML
2013-06-24 18:49:20 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML
2013-06-24 18:49:20 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge
2013-06-24 18:49:20 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge
2013-06-24 18:49:20 [FINEST] [bC] Sending event FMLServerStartedEvent to mod BC
2013-06-24 18:49:20 [FINEST] [bC] Sent event FMLServerStartedEvent to mod BC
2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sending event FMLServerStartedEvent to mod BuildCraft|Core
2013-06-24 18:49:20 [FINEST] [buildCraft|Core] Sent event FMLServerStartedEvent to mod BuildCraft|Core
2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sending event FMLServerStartedEvent to mod BuildCraft|Builders
2013-06-24 18:49:20 [FINEST] [buildCraft|Builders] Sent event FMLServerStartedEvent to mod BuildCraft|Builders
2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sending event FMLServerStartedEvent to mod BuildCraft|Energy
2013-06-24 18:49:20 [FINEST] [buildCraft|Energy] Sent event FMLServerStartedEvent to mod BuildCraft|Energy
2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sending event FMLServerStartedEvent to mod BuildCraft|Factory
2013-06-24 18:49:20 [FINEST] [buildCraft|Factory] Sent event FMLServerStartedEvent to mod BuildCraft|Factory
2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sending event FMLServerStartedEvent to mod BuildCraft|Transport
2013-06-24 18:49:20 [FINEST] [buildCraft|Transport] Sent event FMLServerStartedEvent to mod BuildCraft|Transport
2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartedEvent to mod BuildCraft|Silicon
2013-06-24 18:49:20 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartedEvent to mod BuildCraft|Silicon
2013-06-24 18:49:20 [FINEST] [EE3] Sending event FMLServerStartedEvent to mod EE3
2013-06-24 18:49:20 [FINEST] [EE3] Sent event FMLServerStartedEvent to mod EE3
2013-06-24 18:49:20 [FINEST] [sC] Sending event FMLServerStartedEvent to mod SC
2013-06-24 18:49:20 [FINEST] [sC] Sent event FMLServerStartedEvent to mod SC
2013-06-24 18:49:20 [FINEST] [NC] Sending event FMLServerStartedEvent to mod NC
2013-06-24 18:49:20 [FINEST] [NC] Sent event FMLServerStartedEvent to mod NC
2013-06-24 18:49:23 [iNFO] [Minecraft-Server] tomasdude[/127.0.0.1:0] logged in with entity id 245 at (134.5, 73.0, 285.5)
2013-06-24 18:49:25 [iNFO] [Minecraft-Server] Saving and pausing game...
2013-06-24 18:49:25 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 18:49:38 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 18:49:38 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 18:49:38 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 18:49:38 [WARNING] [Minecraft-Server] Can't keep up! Did the system time change, or is the server overloaded?
2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving and pausing game...
2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 18:51:16 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] tomasdude lost connection: disconnect.quitting
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Stopping singleplayer server as player logged out
2013-06-24 18:51:17 [FINEST] [mcp] Sending event FMLServerStoppingEvent to mod mcp
2013-06-24 18:51:17 [FINEST] [mcp] Sent event FMLServerStoppingEvent to mod mcp
2013-06-24 18:51:17 [FINEST] [FML] Sending event FMLServerStoppingEvent to mod FML
2013-06-24 18:51:17 [FINEST] [FML] Sent event FMLServerStoppingEvent to mod FML
2013-06-24 18:51:17 [FINEST] [Forge] Sending event FMLServerStoppingEvent to mod Forge
2013-06-24 18:51:17 [FINEST] [Forge] Sent event FMLServerStoppingEvent to mod Forge
2013-06-24 18:51:17 [FINEST] [bC] Sending event FMLServerStoppingEvent to mod BC
2013-06-24 18:51:17 [FINEST] [bC] Sent event FMLServerStoppingEvent to mod BC
2013-06-24 18:51:17 [FINEST] [buildCraft|Core] Sending event FMLServerStoppingEvent to mod BuildCraft|Core
2013-06-24 18:51:17 [FINEST] [buildCraft|Core] Sent event FMLServerStoppingEvent to mod BuildCraft|Core
2013-06-24 18:51:17 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppingEvent to mod BuildCraft|Builders
2013-06-24 18:51:17 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppingEvent to mod BuildCraft|Builders
2013-06-24 18:51:17 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppingEvent to mod BuildCraft|Energy
2013-06-24 18:51:17 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppingEvent to mod BuildCraft|Energy
2013-06-24 18:51:17 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppingEvent to mod BuildCraft|Factory
2013-06-24 18:51:17 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppingEvent to mod BuildCraft|Factory
2013-06-24 18:51:17 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppingEvent to mod BuildCraft|Transport
2013-06-24 18:51:17 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppingEvent to mod BuildCraft|Transport
2013-06-24 18:51:17 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppingEvent to mod BuildCraft|Silicon
2013-06-24 18:51:17 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppingEvent to mod BuildCraft|Silicon
2013-06-24 18:51:17 [FINEST] [EE3] Sending event FMLServerStoppingEvent to mod EE3
2013-06-24 18:51:17 [FINEST] [EE3] Sent event FMLServerStoppingEvent to mod EE3
2013-06-24 18:51:17 [FINEST] [sC] Sending event FMLServerStoppingEvent to mod SC
2013-06-24 18:51:17 [FINEST] [sC] Sent event FMLServerStoppingEvent to mod SC
2013-06-24 18:51:17 [FINEST] [NC] Sending event FMLServerStoppingEvent to mod NC
2013-06-24 18:51:17 [FINEST] [NC] Sent event FMLServerStoppingEvent to mod NC
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Stopping server
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving players
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving worlds
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 18:51:17 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension 0
2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension -1
2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension 1
2013-06-24 18:51:19 [iNFO] [ForgeModLoader] Unloading dimension 50
2013-06-24 18:51:19 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp
2013-06-24 18:51:19 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp
2013-06-24 18:51:19 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML
2013-06-24 18:51:19 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML
2013-06-24 18:51:19 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge
2013-06-24 18:51:19 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge
2013-06-24 18:51:19 [FINEST] [bC] Sending event FMLServerStoppedEvent to mod BC
2013-06-24 18:51:19 [FINEST] [bC] Sent event FMLServerStoppedEvent to mod BC
2013-06-24 18:51:19 [FINEST] [buildCraft|Core] Sending event FMLServerStoppedEvent to mod BuildCraft|Core
2013-06-24 18:51:19 [FINEST] [buildCraft|Core] Sent event FMLServerStoppedEvent to mod BuildCraft|Core
2013-06-24 18:51:19 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppedEvent to mod BuildCraft|Builders
2013-06-24 18:51:19 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppedEvent to mod BuildCraft|Builders
2013-06-24 18:51:19 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppedEvent to mod BuildCraft|Energy
2013-06-24 18:51:19 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppedEvent to mod BuildCraft|Energy
2013-06-24 18:51:19 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppedEvent to mod BuildCraft|Factory
2013-06-24 18:51:19 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppedEvent to mod BuildCraft|Factory
2013-06-24 18:51:19 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppedEvent to mod BuildCraft|Transport
2013-06-24 18:51:19 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppedEvent to mod BuildCraft|Transport
2013-06-24 18:51:19 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppedEvent to mod BuildCraft|Silicon
2013-06-24 18:51:19 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppedEvent to mod BuildCraft|Silicon
2013-06-24 18:51:19 [FINEST] [EE3] Sending event FMLServerStoppedEvent to mod EE3
2013-06-24 18:51:19 [FINEST] [EE3] Sent event FMLServerStoppedEvent to mod EE3
2013-06-24 18:51:19 [FINEST] [sC] Sending event FMLServerStoppedEvent to mod SC
2013-06-24 18:51:19 [FINEST] [sC] Sent event FMLServerStoppedEvent to mod SC
2013-06-24 18:51:19 [FINEST] [NC] Sending event FMLServerStoppedEvent to mod NC
2013-06-24 18:51:19 [FINEST] [NC] Sent event FMLServerStoppedEvent to mod NC
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting level New World
2013-06-24 18:51:23 [iNFO] [sTDOUT] Attempt 1...
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\data
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\data\villages.dat
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\data
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\forcedchunks.dat
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\data
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\forcedchunks.dat
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\forcedchunks.dat
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_mcr
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_old
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\data
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\forcedchunks.dat
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.-2.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-3.1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.-1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.-2.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-4.1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-5.-1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Couldn't delete file .\saves\New World\NIGHTMARE_DIM\region
2013-06-24 18:51:23 [iNFO] [sTDOUT] Couldn't delete directory .\saves\New World\NIGHTMARE_DIM
2013-06-24 18:51:23 [iNFO] [sTDOUT] Unsuccessful in deleting contents.
2013-06-24 18:51:23 [iNFO] [sTDOUT] Attempt 2...
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\players
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\players\tomasdude.dat
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.1.0.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.1.1.mca
2013-06-24 18:51:23 [iNFO] [sTDOUT] Deleting .\saves\New World\session.lock
2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2
2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Generating keypair
2013-06-24 18:51:45 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp
2013-06-24 18:51:45 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp
2013-06-24 18:51:45 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML
2013-06-24 18:51:45 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML
2013-06-24 18:51:45 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge
2013-06-24 18:51:45 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge
2013-06-24 18:51:45 [FINEST] [bC] Sending event FMLServerAboutToStartEvent to mod BC
2013-06-24 18:51:45 [FINEST] [bC] Sent event FMLServerAboutToStartEvent to mod BC
2013-06-24 18:51:45 [FINEST] [buildCraft|Core] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Core
2013-06-24 18:51:45 [FINEST] [buildCraft|Core] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Core
2013-06-24 18:51:45 [FINEST] [buildCraft|Builders] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Builders
2013-06-24 18:51:45 [FINEST] [buildCraft|Builders] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Builders
2013-06-24 18:51:45 [FINEST] [buildCraft|Energy] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Energy
2013-06-24 18:51:45 [FINEST] [buildCraft|Energy] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Energy
2013-06-24 18:51:45 [FINEST] [buildCraft|Factory] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Factory
2013-06-24 18:51:45 [FINEST] [buildCraft|Factory] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Factory
2013-06-24 18:51:45 [FINEST] [buildCraft|Transport] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Transport
2013-06-24 18:51:45 [FINEST] [buildCraft|Transport] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Transport
2013-06-24 18:51:45 [FINEST] [buildCraft|Silicon] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Silicon
2013-06-24 18:51:45 [FINEST] [buildCraft|Silicon] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Silicon
2013-06-24 18:51:45 [FINEST] [EE3] Sending event FMLServerAboutToStartEvent to mod EE3
2013-06-24 18:51:45 [FINEST] [EE3] Sent event FMLServerAboutToStartEvent to mod EE3
2013-06-24 18:51:45 [FINEST] [sC] Sending event FMLServerAboutToStartEvent to mod SC
2013-06-24 18:51:45 [FINEST] [sC] Sent event FMLServerAboutToStartEvent to mod SC
2013-06-24 18:51:45 [FINEST] [NC] Sending event FMLServerAboutToStartEvent to mod NC
2013-06-24 18:51:45 [FINEST] [NC] Sent event FMLServerAboutToStartEvent to mod NC
2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Converting map!
2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Scanning folders...
2013-06-24 18:51:45 [iNFO] [Minecraft-Server] Total conversion count is 0
2013-06-24 18:51:45 [FINE] [fml.ItemTracker] The difference set is equal
2013-06-24 18:51:45 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b)
2013-06-24 18:51:45 [WARNING] [Minecraft-Server] Unable to find spawn biome
2013-06-24 18:51:49 [iNFO] [ForgeModLoader] Loading dimension 50 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b)
2013-06-24 18:51:49 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b)
2013-06-24 18:51:49 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@7e7f9d6b)
2013-06-24 18:51:49 [iNFO] [Minecraft-Server] Preparing start region for level 0
2013-06-24 18:51:50 [iNFO] [Minecraft-Server] Preparing spawn area: 17%
2013-06-24 18:51:51 [iNFO] [Minecraft-Server] Preparing spawn area: 32%
2013-06-24 18:51:52 [iNFO] [Minecraft-Server] Preparing spawn area: 48%
2013-06-24 18:51:53 [iNFO] [Minecraft-Server] Preparing spawn area: 63%
2013-06-24 18:51:54 [iNFO] [Minecraft-Server] Preparing spawn area: 75%
2013-06-24 18:51:56 [iNFO] [Minecraft-Server] Preparing spawn area: 91%
2013-06-24 18:51:56 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp
2013-06-24 18:51:56 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp
2013-06-24 18:51:56 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML
2013-06-24 18:51:56 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML
2013-06-24 18:51:56 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge
2013-06-24 18:51:56 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge
2013-06-24 18:51:56 [FINEST] [bC] Sending event FMLServerStartingEvent to mod BC
2013-06-24 18:51:56 [FINEST] [bC] Sent event FMLServerStartingEvent to mod BC
2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sending event FMLServerStartingEvent to mod BuildCraft|Core
2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sent event FMLServerStartingEvent to mod BuildCraft|Core
2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sending event FMLServerStartingEvent to mod BuildCraft|Builders
2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sent event FMLServerStartingEvent to mod BuildCraft|Builders
2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sending event FMLServerStartingEvent to mod BuildCraft|Energy
2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sent event FMLServerStartingEvent to mod BuildCraft|Energy
2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sending event FMLServerStartingEvent to mod BuildCraft|Factory
2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sent event FMLServerStartingEvent to mod BuildCraft|Factory
2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sending event FMLServerStartingEvent to mod BuildCraft|Transport
2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sent event FMLServerStartingEvent to mod BuildCraft|Transport
2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartingEvent to mod BuildCraft|Silicon
2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartingEvent to mod BuildCraft|Silicon
2013-06-24 18:51:56 [FINEST] [EE3] Sending event FMLServerStartingEvent to mod EE3
2013-06-24 18:51:56 [FINEST] [EE3] Sent event FMLServerStartingEvent to mod EE3
2013-06-24 18:51:56 [FINEST] [sC] Sending event FMLServerStartingEvent to mod SC
2013-06-24 18:51:56 [FINEST] [sC] Sent event FMLServerStartingEvent to mod SC
2013-06-24 18:51:56 [FINEST] [NC] Sending event FMLServerStartingEvent to mod NC
2013-06-24 18:51:56 [FINEST] [NC] Sent event FMLServerStartingEvent to mod NC
2013-06-24 18:51:56 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp
2013-06-24 18:51:56 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp
2013-06-24 18:51:56 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML
2013-06-24 18:51:56 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML
2013-06-24 18:51:56 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge
2013-06-24 18:51:56 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge
2013-06-24 18:51:56 [FINEST] [bC] Sending event FMLServerStartedEvent to mod BC
2013-06-24 18:51:56 [FINEST] [bC] Sent event FMLServerStartedEvent to mod BC
2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sending event FMLServerStartedEvent to mod BuildCraft|Core
2013-06-24 18:51:56 [FINEST] [buildCraft|Core] Sent event FMLServerStartedEvent to mod BuildCraft|Core
2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sending event FMLServerStartedEvent to mod BuildCraft|Builders
2013-06-24 18:51:56 [FINEST] [buildCraft|Builders] Sent event FMLServerStartedEvent to mod BuildCraft|Builders
2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sending event FMLServerStartedEvent to mod BuildCraft|Energy
2013-06-24 18:51:56 [FINEST] [buildCraft|Energy] Sent event FMLServerStartedEvent to mod BuildCraft|Energy
2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sending event FMLServerStartedEvent to mod BuildCraft|Factory
2013-06-24 18:51:56 [FINEST] [buildCraft|Factory] Sent event FMLServerStartedEvent to mod BuildCraft|Factory
2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sending event FMLServerStartedEvent to mod BuildCraft|Transport
2013-06-24 18:51:56 [FINEST] [buildCraft|Transport] Sent event FMLServerStartedEvent to mod BuildCraft|Transport
2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartedEvent to mod BuildCraft|Silicon
2013-06-24 18:51:56 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartedEvent to mod BuildCraft|Silicon
2013-06-24 18:51:56 [FINEST] [EE3] Sending event FMLServerStartedEvent to mod EE3
2013-06-24 18:51:56 [FINEST] [EE3] Sent event FMLServerStartedEvent to mod EE3
2013-06-24 18:51:56 [FINEST] [sC] Sending event FMLServerStartedEvent to mod SC
2013-06-24 18:51:56 [FINEST] [sC] Sent event FMLServerStartedEvent to mod SC
2013-06-24 18:51:56 [FINEST] [NC] Sending event FMLServerStartedEvent to mod NC
2013-06-24 18:51:56 [FINEST] [NC] Sent event FMLServerStartedEvent to mod NC
2013-06-24 18:51:56 [iNFO] [Minecraft-Server] tomasdude[/127.0.0.1:0] logged in with entity id 15522 at (-64.5, 65.0, -142.5)
2013-06-24 18:52:46 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: first encounter (5 occurences).

2013-06-24 18:53:36 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 10 times.

2013-06-24 18:54:26 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 15 times.

2013-06-24 18:55:16 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 20 times.

2013-06-24 18:55:27 [iNFO] [Minecraft-Server] Saving and pausing game...
2013-06-24 18:55:27 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 18:55:28 [FINEST] [mcp] Sending event FMLServerStoppingEvent to mod mcp
2013-06-24 18:55:28 [FINEST] [mcp] Sent event FMLServerStoppingEvent to mod mcp
2013-06-24 18:55:28 [FINEST] [FML] Sending event FMLServerStoppingEvent to mod FML
2013-06-24 18:55:28 [FINEST] [FML] Sent event FMLServerStoppingEvent to mod FML
2013-06-24 18:55:28 [FINEST] [Forge] Sending event FMLServerStoppingEvent to mod Forge
2013-06-24 18:55:28 [FINEST] [Forge] Sent event FMLServerStoppingEvent to mod Forge
2013-06-24 18:55:28 [FINEST] [bC] Sending event FMLServerStoppingEvent to mod BC
2013-06-24 18:55:28 [FINEST] [bC] Sent event FMLServerStoppingEvent to mod BC
2013-06-24 18:55:28 [FINEST] [buildCraft|Core] Sending event FMLServerStoppingEvent to mod BuildCraft|Core
2013-06-24 18:55:28 [FINEST] [buildCraft|Core] Sent event FMLServerStoppingEvent to mod BuildCraft|Core
2013-06-24 18:55:28 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppingEvent to mod BuildCraft|Builders
2013-06-24 18:55:28 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppingEvent to mod BuildCraft|Builders
2013-06-24 18:55:28 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppingEvent to mod BuildCraft|Energy
2013-06-24 18:55:28 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppingEvent to mod BuildCraft|Energy
2013-06-24 18:55:28 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppingEvent to mod BuildCraft|Factory
2013-06-24 18:55:28 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppingEvent to mod BuildCraft|Factory
2013-06-24 18:55:28 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppingEvent to mod BuildCraft|Transport
2013-06-24 18:55:28 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppingEvent to mod BuildCraft|Transport
2013-06-24 18:55:28 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppingEvent to mod BuildCraft|Silicon
2013-06-24 18:55:28 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppingEvent to mod BuildCraft|Silicon
2013-06-24 18:55:28 [FINEST] [EE3] Sending event FMLServerStoppingEvent to mod EE3
2013-06-24 18:55:28 [FINEST] [EE3] Sent event FMLServerStoppingEvent to mod EE3
2013-06-24 18:55:28 [FINEST] [sC] Sending event FMLServerStoppingEvent to mod SC
2013-06-24 18:55:28 [FINEST] [sC] Sent event FMLServerStoppingEvent to mod SC
2013-06-24 18:55:28 [FINEST] [NC] Sending event FMLServerStoppingEvent to mod NC
2013-06-24 18:55:28 [FINEST] [NC] Sent event FMLServerStoppingEvent to mod NC
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Stopping server
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving players
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving worlds
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 18:55:28 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension 0
2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension -1
2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension 1
2013-06-24 18:55:30 [iNFO] [ForgeModLoader] Unloading dimension 50
2013-06-24 18:55:30 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp
2013-06-24 18:55:30 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp
2013-06-24 18:55:30 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML
2013-06-24 18:55:30 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML
2013-06-24 18:55:30 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge
2013-06-24 18:55:30 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge
2013-06-24 18:55:30 [FINEST] [bC] Sending event FMLServerStoppedEvent to mod BC
2013-06-24 18:55:30 [FINEST] [bC] Sent event FMLServerStoppedEvent to mod BC
2013-06-24 18:55:30 [FINEST] [buildCraft|Core] Sending event FMLServerStoppedEvent to mod BuildCraft|Core
2013-06-24 18:55:30 [FINEST] [buildCraft|Core] Sent event FMLServerStoppedEvent to mod BuildCraft|Core
2013-06-24 18:55:30 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppedEvent to mod BuildCraft|Builders
2013-06-24 18:55:30 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppedEvent to mod BuildCraft|Builders
2013-06-24 18:55:30 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppedEvent to mod BuildCraft|Energy
2013-06-24 18:55:30 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppedEvent to mod BuildCraft|Energy
2013-06-24 18:55:30 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppedEvent to mod BuildCraft|Factory
2013-06-24 18:55:30 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppedEvent to mod BuildCraft|Factory
2013-06-24 18:55:30 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppedEvent to mod BuildCraft|Transport
2013-06-24 18:55:30 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppedEvent to mod BuildCraft|Transport
2013-06-24 18:55:30 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppedEvent to mod BuildCraft|Silicon
2013-06-24 18:55:30 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppedEvent to mod BuildCraft|Silicon
2013-06-24 18:55:30 [FINEST] [EE3] Sending event FMLServerStoppedEvent to mod EE3
2013-06-24 18:55:30 [FINEST] [EE3] Sent event FMLServerStoppedEvent to mod EE3
2013-06-24 18:55:30 [FINEST] [sC] Sending event FMLServerStoppedEvent to mod SC
2013-06-24 18:55:30 [FINEST] [sC] Sent event FMLServerStoppedEvent to mod SC
2013-06-24 18:55:30 [FINEST] [NC] Sending event FMLServerStoppedEvent to mod NC
2013-06-24 18:55:30 [FINEST] [NC] Sent event FMLServerStoppedEvent to mod NC
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting level New World
2013-06-24 18:55:35 [iNFO] [sTDOUT] Attempt 1...
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\data
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\data\villages.dat
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\data
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM-1\forcedchunks.dat
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\data
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\DIM1\forcedchunks.dat
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\forcedchunks.dat
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_mcr
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\level.dat_old
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\data
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\forcedchunks.dat
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-1.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-2.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.-3.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-1.0.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-1.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.-2.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.-2.0.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-1.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-2.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.-3.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region\r.0.0.mca
2013-06-24 18:55:35 [iNFO] [sTDOUT] Couldn't delete file .\saves\New World\NIGHTMARE_DIM\region
2013-06-24 18:55:35 [iNFO] [sTDOUT] Couldn't delete directory .\saves\New World\NIGHTMARE_DIM
2013-06-24 18:55:35 [iNFO] [sTDOUT] Unsuccessful in deleting contents.
2013-06-24 18:55:36 [iNFO] [sTDOUT] Attempt 2...
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\NIGHTMARE_DIM\region
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\players
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\players\tomasdude.dat
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-1.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-2.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-3.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-4.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.-5.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.-1.0.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-1.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-2.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-3.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-4.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.-5.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region\r.0.0.mca
2013-06-24 18:55:36 [iNFO] [sTDOUT] Couldn't delete file .\saves\New World\region
2013-06-24 18:55:36 [iNFO] [sTDOUT] Unsuccessful in deleting contents.
2013-06-24 18:55:36 [iNFO] [sTDOUT] Attempt 3...
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\region
2013-06-24 18:55:36 [iNFO] [sTDOUT] Deleting .\saves\New World\session.lock
2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.5.2
2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Generating keypair
2013-06-24 18:55:41 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp
2013-06-24 18:55:41 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp
2013-06-24 18:55:41 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML
2013-06-24 18:55:41 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML
2013-06-24 18:55:41 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge
2013-06-24 18:55:41 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge
2013-06-24 18:55:41 [FINEST] [bC] Sending event FMLServerAboutToStartEvent to mod BC
2013-06-24 18:55:41 [FINEST] [bC] Sent event FMLServerAboutToStartEvent to mod BC
2013-06-24 18:55:41 [FINEST] [buildCraft|Core] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Core
2013-06-24 18:55:41 [FINEST] [buildCraft|Core] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Core
2013-06-24 18:55:41 [FINEST] [buildCraft|Builders] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Builders
2013-06-24 18:55:41 [FINEST] [buildCraft|Builders] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Builders
2013-06-24 18:55:41 [FINEST] [buildCraft|Energy] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Energy
2013-06-24 18:55:41 [FINEST] [buildCraft|Energy] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Energy
2013-06-24 18:55:41 [FINEST] [buildCraft|Factory] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Factory
2013-06-24 18:55:41 [FINEST] [buildCraft|Factory] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Factory
2013-06-24 18:55:41 [FINEST] [buildCraft|Transport] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Transport
2013-06-24 18:55:41 [FINEST] [buildCraft|Transport] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Transport
2013-06-24 18:55:41 [FINEST] [buildCraft|Silicon] Sending event FMLServerAboutToStartEvent to mod BuildCraft|Silicon
2013-06-24 18:55:41 [FINEST] [buildCraft|Silicon] Sent event FMLServerAboutToStartEvent to mod BuildCraft|Silicon
2013-06-24 18:55:41 [FINEST] [EE3] Sending event FMLServerAboutToStartEvent to mod EE3
2013-06-24 18:55:41 [FINEST] [EE3] Sent event FMLServerAboutToStartEvent to mod EE3
2013-06-24 18:55:41 [FINEST] [sC] Sending event FMLServerAboutToStartEvent to mod SC
2013-06-24 18:55:41 [FINEST] [sC] Sent event FMLServerAboutToStartEvent to mod SC
2013-06-24 18:55:41 [FINEST] [NC] Sending event FMLServerAboutToStartEvent to mod NC
2013-06-24 18:55:41 [FINEST] [NC] Sent event FMLServerAboutToStartEvent to mod NC
2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Converting map!
2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Scanning folders...
2013-06-24 18:55:41 [iNFO] [Minecraft-Server] Total conversion count is 0
2013-06-24 18:55:41 [FINE] [fml.ItemTracker] The difference set is equal
2013-06-24 18:55:41 [iNFO] [ForgeModLoader] Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e)
2013-06-24 18:55:41 [WARNING] [Minecraft-Server] Unable to find spawn biome
2013-06-24 18:55:45 [iNFO] [ForgeModLoader] Loading dimension 50 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e)
2013-06-24 18:55:45 [iNFO] [ForgeModLoader] Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e)
2013-06-24 18:55:45 [iNFO] [ForgeModLoader] Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@2440f9e)
2013-06-24 18:55:45 [iNFO] [Minecraft-Server] Preparing start region for level 0
2013-06-24 18:55:46 [iNFO] [Minecraft-Server] Preparing spawn area: 16%
2013-06-24 18:55:47 [iNFO] [Minecraft-Server] Preparing spawn area: 32%
2013-06-24 18:55:48 [iNFO] [Minecraft-Server] Preparing spawn area: 46%
2013-06-24 18:55:49 [iNFO] [Minecraft-Server] Preparing spawn area: 60%
2013-06-24 18:55:50 [iNFO] [Minecraft-Server] Preparing spawn area: 73%
2013-06-24 18:55:51 [iNFO] [Minecraft-Server] Preparing spawn area: 88%
2013-06-24 18:55:52 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp
2013-06-24 18:55:52 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp
2013-06-24 18:55:52 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML
2013-06-24 18:55:52 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML
2013-06-24 18:55:52 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge
2013-06-24 18:55:52 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge
2013-06-24 18:55:52 [FINEST] [bC] Sending event FMLServerStartingEvent to mod BC
2013-06-24 18:55:52 [FINEST] [bC] Sent event FMLServerStartingEvent to mod BC
2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sending event FMLServerStartingEvent to mod BuildCraft|Core
2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sent event FMLServerStartingEvent to mod BuildCraft|Core
2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sending event FMLServerStartingEvent to mod BuildCraft|Builders
2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sent event FMLServerStartingEvent to mod BuildCraft|Builders
2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sending event FMLServerStartingEvent to mod BuildCraft|Energy
2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sent event FMLServerStartingEvent to mod BuildCraft|Energy
2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sending event FMLServerStartingEvent to mod BuildCraft|Factory
2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sent event FMLServerStartingEvent to mod BuildCraft|Factory
2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sending event FMLServerStartingEvent to mod BuildCraft|Transport
2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sent event FMLServerStartingEvent to mod BuildCraft|Transport
2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartingEvent to mod BuildCraft|Silicon
2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartingEvent to mod BuildCraft|Silicon
2013-06-24 18:55:52 [FINEST] [EE3] Sending event FMLServerStartingEvent to mod EE3
2013-06-24 18:55:52 [FINEST] [EE3] Sent event FMLServerStartingEvent to mod EE3
2013-06-24 18:55:52 [FINEST] [sC] Sending event FMLServerStartingEvent to mod SC
2013-06-24 18:55:52 [FINEST] [sC] Sent event FMLServerStartingEvent to mod SC
2013-06-24 18:55:52 [FINEST] [NC] Sending event FMLServerStartingEvent to mod NC
2013-06-24 18:55:52 [FINEST] [NC] Sent event FMLServerStartingEvent to mod NC
2013-06-24 18:55:52 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp
2013-06-24 18:55:52 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp
2013-06-24 18:55:52 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML
2013-06-24 18:55:52 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML
2013-06-24 18:55:52 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge
2013-06-24 18:55:52 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge
2013-06-24 18:55:52 [FINEST] [bC] Sending event FMLServerStartedEvent to mod BC
2013-06-24 18:55:52 [FINEST] [bC] Sent event FMLServerStartedEvent to mod BC
2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sending event FMLServerStartedEvent to mod BuildCraft|Core
2013-06-24 18:55:52 [FINEST] [buildCraft|Core] Sent event FMLServerStartedEvent to mod BuildCraft|Core
2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sending event FMLServerStartedEvent to mod BuildCraft|Builders
2013-06-24 18:55:52 [FINEST] [buildCraft|Builders] Sent event FMLServerStartedEvent to mod BuildCraft|Builders
2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sending event FMLServerStartedEvent to mod BuildCraft|Energy
2013-06-24 18:55:52 [FINEST] [buildCraft|Energy] Sent event FMLServerStartedEvent to mod BuildCraft|Energy
2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sending event FMLServerStartedEvent to mod BuildCraft|Factory
2013-06-24 18:55:52 [FINEST] [buildCraft|Factory] Sent event FMLServerStartedEvent to mod BuildCraft|Factory
2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sending event FMLServerStartedEvent to mod BuildCraft|Transport
2013-06-24 18:55:52 [FINEST] [buildCraft|Transport] Sent event FMLServerStartedEvent to mod BuildCraft|Transport
2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sending event FMLServerStartedEvent to mod BuildCraft|Silicon
2013-06-24 18:55:52 [FINEST] [buildCraft|Silicon] Sent event FMLServerStartedEvent to mod BuildCraft|Silicon
2013-06-24 18:55:52 [FINEST] [EE3] Sending event FMLServerStartedEvent to mod EE3
2013-06-24 18:55:52 [FINEST] [EE3] Sent event FMLServerStartedEvent to mod EE3
2013-06-24 18:55:52 [FINEST] [sC] Sending event FMLServerStartedEvent to mod SC
2013-06-24 18:55:52 [FINEST] [sC] Sent event FMLServerStartedEvent to mod SC
2013-06-24 18:55:52 [FINEST] [NC] Sending event FMLServerStartedEvent to mod NC
2013-06-24 18:55:52 [FINEST] [NC] Sent event FMLServerStartedEvent to mod NC
2013-06-24 18:55:52 [iNFO] [Minecraft-Server] tomasdude[/127.0.0.1:0] logged in with entity id 60546 at (235.5, 70.0, 236.5)
2013-06-24 18:56:32 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 25 times.

2013-06-24 18:56:42 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: first encounter (5 occurences).

2013-06-24 18:57:22 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 30 times.

2013-06-24 18:57:32 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 10 times.

2013-06-24 18:58:12 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 35 times.

2013-06-24 18:58:22 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 15 times.

2013-06-24 18:59:02 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 40 times.

2013-06-24 18:59:12 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 20 times.

2013-06-24 18:59:52 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 45 times.

2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving and pausing game...
2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 18:59:53 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 19:00:06 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 25 times.

2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving and pausing game...
2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 19:00:44 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 19:00:49 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 50 times.

2013-06-24 19:00:59 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 30 times.

2013-06-24 19:01:39 [FINE] [ForgeModLoader] The world 429517a0 (New World) may have leaked: seen 55 times.

2013-06-24 19:01:49 [FINE] [ForgeModLoader] The world 504f1336 (New World) may have leaked: seen 35 times.

2013-06-24 19:02:36 [iNFO] [sTDERR] java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.entity.Entity.moveEntity(Entity.java:967)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)
2013-06-24 19:02:36 [iNFO] [sTDERR] 	at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-06-24 19:02:36 [sEVERE] [Minecraft-Server] Encountered an unexpected exception NoClassDefFoundError
java.lang.NoClassDefFoundError: net/minecraft/world/CallableLvl1
at net.minecraft.world.World.notifyBlockOfNeighborChange(World.java:863)
at net.minecraft.world.World.notifyBlocksOfNeighborChange(World.java:792)
at net.minecraft.world.Teleporter.makePortal(Teleporter.java:478)
at net.minecraft.world.Teleporter.placeInPortal(Teleporter.java:44)
at net.minecraft.server.management.ServerConfigurationManager.transferEntityToWorld(ServerConfigurationManager.java:557)
at net.minecraft.server.management.ServerConfigurationManager.transferPlayerToDimension(ServerConfigurationManager.java:482)
at invizzble.mods.nc.blocks.BlockNightmarePortal.onEntityCollidedWithBlock(BlockNightmarePortal.java:44)
at net.minecraft.entity.Entity.doBlockCollisions(Entity.java:1023)
at net.minecraft.entity.Entity.moveEntity(Entity.java:967)
at net.minecraft.network.NetServerHandler.handleFlying(NetServerHandler.java:345)
at net.minecraft.network.packet.Packet10Flying.processPacket(Packet10Flying.java:51)
at net.minecraft.network.MemoryConnection.processReadPackets(MemoryConnection.java:89)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:134)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:53)
at net.minecraft.server.integrated.IntegratedServerListenThread.networkTick(IntegratedServerListenThread.java:109)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:677)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:573)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:127)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:470)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)
2013-06-24 19:02:37 [sEVERE] [Minecraft-Server] This crash report has been saved to: C:\Users\Raf\Dropbox\Developement\mcp\jars\.\crash-reports\crash-2013-06-24_19.02.37-server.txt
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Stopping server
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving players
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving worlds
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Overworld
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nether
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/The End
2013-06-24 19:02:37 [iNFO] [Minecraft-Server] Saving chunks for level 'New World'/Nightmare Dimension
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 0
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension -1
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 1
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] Unloading dimension 50
2013-06-24 19:02:42 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp
2013-06-24 19:02:42 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp
2013-06-24 19:02:42 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML
2013-06-24 19:02:42 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML
2013-06-24 19:02:42 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge
2013-06-24 19:02:42 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge
2013-06-24 19:02:42 [FINEST] [bC] Sending event FMLServerStoppedEvent to mod BC
2013-06-24 19:02:42 [FINEST] [bC] Sent event FMLServerStoppedEvent to mod BC
2013-06-24 19:02:42 [FINEST] [buildCraft|Core] Sending event FMLServerStoppedEvent to mod BuildCraft|Core
2013-06-24 19:02:42 [FINEST] [buildCraft|Core] Sent event FMLServerStoppedEvent to mod BuildCraft|Core
2013-06-24 19:02:42 [FINEST] [buildCraft|Builders] Sending event FMLServerStoppedEvent to mod BuildCraft|Builders
2013-06-24 19:02:42 [FINEST] [buildCraft|Builders] Sent event FMLServerStoppedEvent to mod BuildCraft|Builders
2013-06-24 19:02:42 [FINEST] [buildCraft|Energy] Sending event FMLServerStoppedEvent to mod BuildCraft|Energy
2013-06-24 19:02:42 [FINEST] [buildCraft|Energy] Sent event FMLServerStoppedEvent to mod BuildCraft|Energy
2013-06-24 19:02:42 [FINEST] [buildCraft|Factory] Sending event FMLServerStoppedEvent to mod BuildCraft|Factory
2013-06-24 19:02:42 [FINEST] [buildCraft|Factory] Sent event FMLServerStoppedEvent to mod BuildCraft|Factory
2013-06-24 19:02:42 [FINEST] [buildCraft|Transport] Sending event FMLServerStoppedEvent to mod BuildCraft|Transport
2013-06-24 19:02:42 [FINEST] [buildCraft|Transport] Sent event FMLServerStoppedEvent to mod BuildCraft|Transport
2013-06-24 19:02:42 [FINEST] [buildCraft|Silicon] Sending event FMLServerStoppedEvent to mod BuildCraft|Silicon
2013-06-24 19:02:42 [FINEST] [buildCraft|Silicon] Sent event FMLServerStoppedEvent to mod BuildCraft|Silicon
2013-06-24 19:02:42 [FINEST] [EE3] Sending event FMLServerStoppedEvent to mod EE3
2013-06-24 19:02:42 [FINEST] [EE3] Sent event FMLServerStoppedEvent to mod EE3
2013-06-24 19:02:42 [FINEST] [sC] Sending event FMLServerStoppedEvent to mod SC
2013-06-24 19:02:42 [FINEST] [sC] Sent event FMLServerStoppedEvent to mod SC
2013-06-24 19:02:42 [FINEST] [NC] Sending event FMLServerStoppedEvent to mod NC
2013-06-24 19:02:42 [FINEST] [NC] Sent event FMLServerStoppedEvent to mod NC
2013-06-24 19:02:42 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
2013-06-24 19:02:47 [iNFO] [Minecraft-Client] Stopping!
2013-06-24 19:02:47 [iNFO] [sTDOUT] 
2013-06-24 19:02:47 [iNFO] [sTDOUT] SoundSystem shutting down...
2013-06-24 19:02:47 [iNFO] [sTDOUT]     Author: Paul Lamb, www.paulscode.com
2013-06-24 19:02:47 [iNFO] [sTDOUT] 
2013-06-24 19:03:20 [iNFO] [sTDERR] Someone is closing me!
2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Stopping server
2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving players
2013-06-24 19:03:20 [iNFO] [Minecraft-Server] Saving worlds

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.