Jump to content

Recommended Posts

Posted

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'

Posted

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);
        
        }

}

Posted

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

Posted

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

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Update your AMD/ATI drivers - get the drivers from their website - do not update via system  
    • Ive made a 1.21.5 modpack with the curseforge launcher and set up a small server for my friends and I. The server works, the modpack works for everyone else but i cant start minecraft, no matter what ive done I get crash code 1. I have updated both graphics and cpu drivers, i have reinstalled java and minecraft. i can play modded 1.20.x but i cant start any 1.21.x modpacks. Here is the log. If you are a wizard that can somehow sift through all this and know whats wrong i would love to hear from you. for the plebians who might have the same problem as me, stay posted in case gandalf strolls by ¯\_(ツ)_/¯ # A fatal error has been detected by the Java Runtime Environment: # #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff8b3476280, pid=25160, tid=26600 # # JRE version: OpenJDK Runtime Environment Microsoft-11369940 (21.0.7+6) (build 21.0.7+6-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-11369940 (21.0.7+6-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C  [atio6axx.dll+0x196280] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: #   https://aka.ms/minecraftjavacrashes # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # ---------------  S U M M A R Y ------------ Command Line: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Djna.tmpdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.14.2 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\sejt seed modded forge -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.21.2.xml net.minecraftforge.bootstrap.ForgeBootstrap --username BingBongMaster27 --version forge-55.0.17 --gameDir \curseforge\minecraft\Instances\sejt seed modded forge --assetsDir \curseforge\minecraft\Install\assets --assetIndex 24 --uuid f68120281c3a4671b587856055e366bf -UTaeapdqVJtu9-ViDPYrMQeXxB4siChHhnieYhKZWD8QrvGUj5J3N--8KoL8DGJC8vSPEwpb7G9YlMGIynR3o4Ri_ZWErl9iSO1h4WxEjZqwKKKUlJ6OP7co2DrCSnf8tVzTJa2pzhpazZecBVD6o2xKtQv5w92Z7AVn-v7kzk8xZiSY4lscbqb4RO9_NVQouUfU5mxCNmpektaO6f_X4vwOlI9UH8oGvlaGkiuP3qL_Rtmqj87ZdxmnROF82aN-Al_I94DH0OfyVL51Sho6TPoEdAJlHervCVl6HWEtuLYAsCp9ykfYiNsx_44WbTZ-a6FBsg --clientId ODM5YTllZmUtMTQzZS00MjVkLWI1MmUtZTZmMmM4MzkxYTIz --xuid 2535410774699131 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1747844448525.json --launchTarget forge_client Host: AMD Ryzen 7 5700U with Radeon Graphics         , 16 cores, 15G,  Windows 11 , 64 bit Build 26100 (10.0.26100.3912) Time: Wed May 21 18:20:52 2025 Rom, sommertid elapsed time: 4.006014 seconds (0d 0h 0m 4s) ---------------  T H R E A D  --------------- Current thread (0x000002771353b650):  JavaThread "main"             [_thread_in_native, id=26600, stack(0x000000fb5a500000,0x000000fb5a600000) (1024K)] Stack: [0x000000fb5a500000,0x000000fb5a600000],  sp=0x000000fb5a5fb1d8,  free space=1004k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C  [atio6axx.dll+0x196280] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j  org.lwjgl.system.JNI.invokePPPP(IIJJJJ)J+0 org.lwjgl@3.3.3+5 j  org.lwjgl.glfw.GLFW.nglfwCreateWindow(IIJJJ)J+14 org.lwjgl.glfw@3.3.3+5 j  org.lwjgl.glfw.GLFW.glfwCreateWindow(IILjava/lang/CharSequence;JJ)J+34 org.lwjgl.glfw@3.3.3+5 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initWindow(Ljava/lang/String;)V+437 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.start(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Runnable;+2 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initialize([Ljava/lang/String;)Ljava/lang/Runnable;+368 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.loading.ImmediateWindowHandler.load(Ljava/lang/String;[Ljava/lang/String;)V+198 net.minecraftforge.fmlloader@1.21.5-55.0.17 j  net.minecraftforge.fml.loading.ModDirTransformerDiscoverer.earlyInitialization(Ljava/lang/String;[Ljava/lang/String;)V+2 net.minecraftforge.fmlloader@1.21.5-55.0.17 j  cpw.mods.modlauncher.TransformationServicesHandler.discoverServices(Lcpw/mods/modlauncher/ArgumentHandler$DiscoveryData;)V+274 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.run([Ljava/lang/String;)V+14 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.main([Ljava/lang/String;)V+114 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.BootstrapEntry.main([Ljava/lang/String;)V+1 cpw.mods.modlauncher@10.2.4 j  net.minecraftforge.bootstrap.Bootstrap.moduleMain([Ljava/lang/String;Ljava/util/List;)V+315 net.minecraftforge.bootstrap@2.1.7 j  java.lang.invoke.LambdaForm$DMH+0x0000000800148000.invokeVirtual(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V+14 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149000.invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+73 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149400.invokeExact_MT(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+22 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invokeImpl(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+72 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+23 java.base@21.0.7 j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+102 java.base@21.0.7 j  net.minecraftforge.bootstrap.Bootstrap.bootstrapMain([Ljava/lang/String;Ljava/util/List;)V+211 j  net.minecraftforge.bootstrap.Bootstrap.start([Ljava/lang/String;)V+186 j  net.minecraftforge.bootstrap.ForgeBootstrap.main([Ljava/lang/String;)V+8 v  ~StubRoutines::call_stub 0x000002771e67100d siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address 0xffffffffffffffff Registers: RAX=0x0000000000000000, RBX=0x00007ff8b6d05a80, RCX=0x2d7365766974616e, RDX=0x00000000000000d0 RSP=0x000000fb5a5fb1d8, RBP=0x000000fb5a5fb340, RSI=0x000000fb5a5fb298, RDI=0x000000fb5a5fb630 R8 =0x00000000000001a5, R9 =0x2d7365766974616e, R10=0x0000000000000000, R11=0x0000000000000200 R12=0x00007ff8b6d05a80, R13=0x00007ff8b6d05ad8, R14=0x00007ff8b6c14f88, R15=0x0000000000000000 RIP=0x00007ff8b3476280, EFLAGS=0x0000000000010202 XMM[0]=0x000000f000000001 0x0000002d00000001 XMM[1]=0x0000000000000000 0x0000000000000000 XMM[2]=0x0000000000000000 0x0000000000000000 XMM[3]=0x0000000000000000 0x0000000000000000 XMM[4]=0x0000000000000000 0x0000000000000000 XMM[5]=0x0000000000000000 0x0000000000000000 XMM[6]=0x04f1d166f8abb63f 0x0a163ef2749a403d XMM[7]=0x0834976695da3a92 0x7390eba5c1b044b9 XMM[8]=0x06a91bf9b84b6314 0x8e8662f25c52007f XMM[9]=0x4ea0f42c4ea0f42c 0x4ea0f42c55e85ad9 XMM[10]=0x0000000000000000 0x00000000074766ad XMM[11]=0xa9fbf020a9fbf020 0xa9fbf020ffe44af9 XMM[12]=0x0000000000000000 0x0000000055e85ad9 XMM[13]=0x0000000000000000 0x00000000391f8821 XMM[14]=0x0000000000000000 0x5b5a1b17caee30a2 XMM[15]=0x0000000000000000 0x000000006f94158b   MXCSR=0x00001fa0 Register to memory mapping: RAX=0x0 is null RBX=0x00007ff8b6d05a80 atio6axx.dll RCX=0x2d7365766974616e is an unknown value RDX=0x00000000000000d0 is an unknown value RSP=0x000000fb5a5fb1d8 is pointing into the stack for thread: 0x000002771353b650 RBP=0x000000fb5a5fb340 is pointing into the stack for thread: 0x000002771353b650 RSI=0x000000fb5a5fb298 is pointing into the stack for thread: 0x000002771353b650 RDI=0x000000fb5a5fb630 is pointing into the stack for thread: 0x000002771353b650 R8 =0x00000000000001a5 is an unknown value R9 =0x2d7365766974616e is an unknown value R10=0x0 is null R11=0x0000000000000200 is an unknown value R12=0x00007ff8b6d05a80 atio6axx.dll R13=0x00007ff8b6d05ad8 atio6axx.dll R14=0x00007ff8b6c14f88 atio6axx.dll R15=0x0 is null Top of Stack: (sp=0x000000fb5a5fb1d8) 0x000000fb5a5fb1d8:   00007ff8b347659c 00007ff8b6d086f0 0x000000fb5a5fb1e8:   000002773ad91748 000000000000004d 0x000000fb5a5fb1f8:   000000fb5a5fb298 000000fb5a5fb630 0x000000fb5a5fb208:   00007ff8b3431af4 00007ff8b6d05a80 0x000000fb5a5fb218:   000000fb5a5fb298 000000fb5a5fb340 0x000000fb5a5fb228:   000045a7c7e8ee72 000000fb5a5fb630 0x000000fb5a5fb238:   00007ff8b3432ab5 00007ff8b6d05a88 0x000000fb5a5fb248:   000000000000004d 00007ff8b6d05a88 0x000000fb5a5fb258:   000002773b03d17c 000000fb00000000 0x000000fb5a5fb268:   0000000000000009 000002773b03d344 0x000000fb5a5fb278:   000002773b03d490 00007ff8b6d05a88 0x000000fb5a5fb288:   000000fb5a5fb630 000000fb5a5fb42f 0x000000fb5a5fb298:   00007f006176616a 000000006176616a 0x000000fb5a5fb2a8:   00007ff96e20680a 46676e697274535c 0x000000fb5a5fb2b8:   5c6f666e49656c69 3062343039303430 0x000000fb5a5fb2c8:   726556656c69465c 000000006e6f6973 0x000000fb5a5fb2d8:   0000000000000000 0000000000000000 0x000000fb5a5fb2e8:   0000000000000000 0000000a0000011c 0x000000fb5a5fb2f8:   000065f400000000 0000000000000002 0x000000fb5a5fb308:   0000000000000000 0000000000000000 0x000000fb5a5fb318:   0000000000000000 0000000000000000 0x000000fb5a5fb328:   0000000000000000 0000000000000000 0x000000fb5a5fb338:   0000000000000000 0000000000000000 0x000000fb5a5fb348:   0000000000000000 0000000000000000 0x000000fb5a5fb358:   0000000000000000 0000000000000000 0x000000fb5a5fb368:   0000000000000000 0000000000000000 0x000000fb5a5fb378:   0000000000000000 0000000000000000 0x000000fb5a5fb388:   0000000000000000 0000000000000000 0x000000fb5a5fb398:   0000000000000000 0000000000000000 0x000000fb5a5fb3a8:   0000000000000000 0000000000000000 0x000000fb5a5fb3b8:   0000000000000000 73726573555c3a43 0x000000fb5a5fb3c8:   5220626f63614a5c 737275635c6b6369  Instructions: (pc=0x00007ff8b3476280) 0x00007ff8b3476180:   74 09 33 c9 ff 15 c6 72 6b 03 90 48 8b c3 48 83 0x00007ff8b3476190:   c4 20 5b c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761a0:   48 83 ec 28 48 8b 51 08 48 85 d2 74 09 33 c9 ff 0x00007ff8b34761b0:   15 9b 72 6b 03 90 48 83 c4 28 c3 cc cc cc cc cc 0x00007ff8b34761c0:   48 89 11 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761d0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761e0:   48 3b ca 74 10 41 8b 00 39 01 74 09 48 83 c1 04 0x00007ff8b34761f0:   48 3b ca 75 f3 48 8b c1 c3 cc cc cc cc cc cc cc 0x00007ff8b3476200:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476210:   48 83 39 00 0f 94 c0 c3 cc cc cc cc cc cc cc cc 0x00007ff8b3476220:   4c 8d 04 d5 00 00 00 00 33 d2 e9 f1 6e e0 01 cc 0x00007ff8b3476230:   4c 8b 41 08 48 8b 02 49 89 00 48 83 41 08 08 c3 0x00007ff8b3476240:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476250:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476260:   49 8b 00 48 89 02 c3 cc cc cc cc cc cc cc cc cc 0x00007ff8b3476270:   8b 81 48 39 00 00 c3 cc cc cc cc cc cc cc cc cc 0x00007ff8b3476280:   8b 81 48 39 00 00 83 c0 f0 83 f8 68 0f 87 5a 01 0x00007ff8b3476290:   00 00 48 8d 15 67 9d e6 ff 0f b6 84 02 10 64 19 0x00007ff8b34762a0:   00 8b 8c 82 f0 63 19 00 48 03 ca ff e1 48 8b 0d 0x00007ff8b34762b0:   ec 5d 83 03 83 b9 04 37 00 00 02 0f 87 2b 01 00 0x00007ff8b34762c0:   00 48 8d 91 30 2b 00 00 c7 02 e1 00 00 00 e9 ce 0x00007ff8b34762d0:   00 00 00 48 8b 0d c6 5d 83 03 83 b9 04 37 00 00 0x00007ff8b34762e0:   02 0f 87 05 01 00 00 48 8d 91 30 2b 00 00 c7 02 0x00007ff8b34762f0:   f0 00 00 00 e9 a8 00 00 00 48 8b 0d a0 5d 83 03 0x00007ff8b3476300:   83 b9 04 37 00 00 02 0f 87 df 00 00 00 48 8d 91 0x00007ff8b3476310:   30 2b 00 00 c7 02 00 04 00 00 e9 82 00 00 00 48 0x00007ff8b3476320:   8b 0d 7a 5d 83 03 83 b9 04 37 00 00 02 0f 87 b9 0x00007ff8b3476330:   00 00 00 48 8d 91 30 2b 00 00 c7 02 00 08 00 00 0x00007ff8b3476340:   eb 5f 48 8b 0d 57 5d 83 03 83 b9 04 37 00 00 02 0x00007ff8b3476350:   0f 87 96 00 00 00 48 8d 91 30 2b 00 00 c7 02 00 0x00007ff8b3476360:   09 00 00 eb 3c 48 8b 0d 34 5d 83 03 83 b9 04 37 0x00007ff8b3476370:   00 00 02 77 77 48 8d 91 30 2b 00 00 c7 02 3c 0f  Stack slot to memory mapping: stack at sp + 0 slots: 0x00007ff8b347659c atio6axx.dll stack at sp + 1 slots: 0x00007ff8b6d086f0 atio6axx.dll stack at sp + 2 slots: 0x000002773ad91748 points into unknown readable memory: 0x00007ff8b650d2f0 | f0 d2 50 b6 f8 7f 00 00 stack at sp + 3 slots: 0x000000000000004d is an unknown value stack at sp + 4 slots: 0x000000fb5a5fb298 is pointing into the stack for thread: 0x000002771353b650 stack at sp + 5 slots: 0x000000fb5a5fb630 is pointing into the stack for thread: 0x000002771353b650 stack at sp + 6 slots: 0x00007ff8b3431af4 atio6axx.dll stack at sp + 7 slots: 0x00007ff8b6d05a80 atio6axx.dll ---------------  P R O C E S S  --------------- Threads class SMR info: _java_thread_list=0x000002773c7111a0, length=22, elements={ 0x000002771353b650, 0x000002772f3953c0, 0x000002772f396fd0, 0x000002772f397a20, 0x000002772f398620, 0x000002772f3f2610, 0x000002772f3f2fd0, 0x000002772f3f3fb0, 0x000002772f3ede60, 0x000002772f45fb10, 0x000002772f6adaa0, 0x000002772f6d43b0, 0x000002772f6f2ff0, 0x000002772fb2bd10, 0x000002772fbe0840, 0x000002773452e140, 0x000002773452f5b0, 0x000002773452eee0, 0x000002773452e810, 0x00000277345310f0, 0x0000027734530a20, 0x0000027738551f10 } Java Threads: ( => current thread ) =>0x000002771353b650 JavaThread "main"                              [_thread_in_native, id=26600, stack(0x000000fb5a500000,0x000000fb5a600000) (1024K)]   0x000002772f3953c0 JavaThread "Reference Handler"          daemon [_thread_blocked, id=1980, stack(0x000000fb5ad00000,0x000000fb5ae00000) (1024K)]   0x000002772f396fd0 JavaThread "Finalizer"                  daemon [_thread_blocked, id=25464, stack(0x000000fb5ae00000,0x000000fb5af00000) (1024K)]   0x000002772f397a20 JavaThread "Signal Dispatcher"          daemon [_thread_blocked, id=26248, stack(0x000000fb5af00000,0x000000fb5b000000) (1024K)]   0x000002772f398620 JavaThread "Attach Listener"            daemon [_thread_blocked, id=21664, stack(0x000000fb5b000000,0x000000fb5b100000) (1024K)]   0x000002772f3f2610 JavaThread "Service Thread"             daemon [_thread_blocked, id=23632, stack(0x000000fb5b100000,0x000000fb5b200000) (1024K)]   0x000002772f3f2fd0 JavaThread "Monitor Deflation Thread"   daemon [_thread_blocked, id=24536, stack(0x000000fb5b200000,0x000000fb5b300000) (1024K)]   0x000002772f3f3fb0 JavaThread "C2 CompilerThread0"         daemon [_thread_blocked, id=3596, stack(0x000000fb5b300000,0x000000fb5b400000) (1024K)]   0x000002772f3ede60 JavaThread "C1 CompilerThread0"         daemon [_thread_blocked, id=15716, stack(0x000000fb5b400000,0x000000fb5b500000) (1024K)]   0x000002772f45fb10 JavaThread "C1 CompilerThread1"         daemon [_thread_blocked, id=22460, stack(0x000000fb5b500000,0x000000fb5b600000) (1024K)]   0x000002772f6adaa0 JavaThread "Notification Thread"        daemon [_thread_blocked, id=25312, stack(0x000000fb5b600000,0x000000fb5b700000) (1024K)]   0x000002772f6d43b0 JavaThread "Common-Cleaner"             daemon [_thread_blocked, id=22376, stack(0x000000fb5b700000,0x000000fb5b800000) (1024K)]   0x000002772f6f2ff0 JavaThread "C2 CompilerThread1"         daemon [_thread_blocked, id=6712, stack(0x000000fb5b800000,0x000000fb5b900000) (1024K)]   0x000002772fb2bd10 JavaThread "C1 CompilerThread2"         daemon [_thread_blocked, id=24364, stack(0x000000fb5ba00000,0x000000fb5bb00000) (1024K)]   0x000002772fbe0840 JavaThread "C1 CompilerThread3"         daemon [_thread_blocked, id=15740, stack(0x000000fb5bb00000,0x000000fb5bc00000) (1024K)]   0x000002773452e140 JavaThread "C2 CompilerThread2"         daemon [_thread_in_native, id=19124, stack(0x000000fb5b900000,0x000000fb5ba00000) (1024K)]   0x000002773452f5b0 JavaThread "C2 CompilerThread3"         daemon [_thread_blocked, id=8356, stack(0x000000fb5bc00000,0x000000fb5bd00000) (1024K)]   0x000002773452eee0 JavaThread "C2 CompilerThread4"         daemon [_thread_blocked, id=22424, stack(0x000000fb5c200000,0x000000fb5c300000) (1024K)]   0x000002773452e810 JavaThread "C2 CompilerThread5"         daemon [_thread_blocked, id=2284, stack(0x000000fb5c300000,0x000000fb5c400000) (1024K)]   0x00000277345310f0 JavaThread "C2 CompilerThread6"         daemon [_thread_blocked, id=24256, stack(0x000000fb5c400000,0x000000fb5c500000) (1024K)]   0x0000027734530a20 JavaThread "C2 CompilerThread7"         daemon [_thread_blocked, id=9916, stack(0x000000fb5cd00000,0x000000fb5ce00000) (1024K)]   0x0000027738551f10 JavaThread "EarlyDisplay"               daemon [_thread_blocked, id=1908, stack(0x000000fb5d200000,0x000000fb5d300000) (1024K)] Total: 22 Other Threads:   0x000002772f325aa0 VMThread "VM Thread"                           [id=25740, stack(0x000000fb5ac00000,0x000000fb5ad00000) (1024K)]   0x000002772e8e2da0 WatcherThread "VM Periodic Task Thread"        [id=22668, stack(0x000000fb5ab00000,0x000000fb5ac00000) (1024K)]   0x00000277135a3aa0 WorkerThread "GC Thread#0"                     [id=26160, stack(0x000000fb5a600000,0x000000fb5a700000) (1024K)]   0x0000027734205fb0 WorkerThread "GC Thread#1"                     [id=10948, stack(0x000000fb5bd00000,0x000000fb5be00000) (1024K)]   0x0000027734269200 WorkerThread "GC Thread#2"                     [id=3248, stack(0x000000fb5be00000,0x000000fb5bf00000) (1024K)]   0x0000027734206350 WorkerThread "GC Thread#3"                     [id=11428, stack(0x000000fb5bf00000,0x000000fb5c000000) (1024K)]   0x000002773427f610 WorkerThread "GC Thread#4"                     [id=23688, stack(0x000000fb5c000000,0x000000fb5c100000) (1024K)]   0x000002772fe0f8a0 WorkerThread "GC Thread#5"                     [id=22540, stack(0x000000fb5c100000,0x000000fb5c200000) (1024K)]   0x0000027734d39820 WorkerThread "GC Thread#6"                     [id=4804, stack(0x000000fb5c500000,0x000000fb5c600000) (1024K)]   0x00000277349d36b0 WorkerThread "GC Thread#7"                     [id=2888, stack(0x000000fb5c600000,0x000000fb5c700000) (1024K)]   0x00000277349d3a50 WorkerThread "GC Thread#8"                     [id=19872, stack(0x000000fb5c700000,0x000000fb5c800000) (1024K)]   0x00000277349d4530 WorkerThread "GC Thread#9"                     [id=24684, stack(0x000000fb5c800000,0x000000fb5c900000) (1024K)]   0x00000277349d3df0 WorkerThread "GC Thread#10"                    [id=8520, stack(0x000000fb5c900000,0x000000fb5ca00000) (1024K)]   0x00000277357cfc10 WorkerThread "GC Thread#11"                    [id=24496, stack(0x000000fb5ca00000,0x000000fb5cb00000) (1024K)]   0x00000277357ced90 WorkerThread "GC Thread#12"                    [id=6024, stack(0x000000fb5ce00000,0x000000fb5cf00000) (1024K)]   0x00000277135b5eb0 ConcurrentGCThread "G1 Main Marker"            [id=23776, stack(0x000000fb5a700000,0x000000fb5a800000) (1024K)]   0x00000277135b67c0 WorkerThread "G1 Conc#0"                       [id=20640, stack(0x000000fb5a800000,0x000000fb5a900000) (1024K)]   0x00000277357d23f0 WorkerThread "G1 Conc#1"                       [id=8448, stack(0x000000fb5cb00000,0x000000fb5cc00000) (1024K)]   0x00000277357cf4d0 WorkerThread "G1 Conc#2"                       [id=19520, stack(0x000000fb5cc00000,0x000000fb5cd00000) (1024K)]   0x000002772e79ca90 ConcurrentGCThread "G1 Refine#0"               [id=22112, stack(0x000000fb5a900000,0x000000fb5aa00000) (1024K)]   0x000002772e79e2c0 ConcurrentGCThread "G1 Service"                [id=24788, stack(0x000000fb5aa00000,0x000000fb5ab00000) (1024K)] Total: 21 Threads with active compile tasks: C2 CompilerThread2  4059 3915       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Total: 1 VM state: not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x0000000700000000, size: 4096 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 CDS archive(s) not mapped Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000 GC Precious Log:  CardTable entry size: 512  Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 16 size 48 Howl #buckets 8 coarsen threshold 3686 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 4096  CPUs: 16 total, 16 available  Memory: 15693M  Large Page Support: Disabled  NUMA Support: Disabled  Compressed Oops: Enabled (Zero based)  Heap Region Size: 2M  Heap Min Capacity: 256M  Heap Initial Capacity: 256M  Heap Max Capacity: 4G  Pre-touch: Disabled  Parallel Workers: 13  Concurrent Workers: 3  Concurrent Refinement Workers: 13  Periodic GC: Disabled Heap:  garbage-first heap   total 262144K, used 138417K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 33 young (67584K), 9 survivors (18432K)  Metaspace       used 27634K, committed 28096K, reserved 1114112K   class space    used 2694K, committed 2944K, reserved 1048576K Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom |   0|0x0000000700000000, 0x0000000700200000, 0x0000000700200000|100%|HS|  |TAMS 0x0000000700000000| PB 0x0000000700000000| Complete  |   1|0x0000000700200000, 0x0000000700400000, 0x0000000700400000|100%|HC|  |TAMS 0x0000000700200000| PB 0x0000000700200000| Complete  |   2|0x0000000700400000, 0x0000000700600000, 0x0000000700600000|100%|HS|  |TAMS 0x0000000700400000| PB 0x0000000700400000| Complete  |   3|0x0000000700600000, 0x0000000700800000, 0x0000000700800000|100%|HS|  |TAMS 0x0000000700600000| PB 0x0000000700600000| Complete  |   4|0x0000000700800000, 0x0000000700a00000, 0x0000000700a00000|100%|HC|  |TAMS 0x0000000700800000| PB 0x0000000700800000| Complete  |   5|0x0000000700a00000, 0x0000000700c00000, 0x0000000700c00000|100%| O|  |TAMS 0x0000000700a00000| PB 0x0000000700a00000| Untracked  |   6|0x0000000700c00000, 0x0000000700e00000, 0x0000000700e00000|100%| O|Cm|TAMS 0x0000000700c00000| PB 0x0000000700c00000| Complete  |   7|0x0000000700e00000, 0x0000000701000000, 0x0000000701000000|100%|HS|  |TAMS 0x0000000700e00000| PB 0x0000000700e00000| Complete  |   8|0x0000000701000000, 0x0000000701200000, 0x0000000701200000|100%|HC|  |TAMS 0x0000000701000000| PB 0x0000000701000000| Complete  |   9|0x0000000701200000, 0x0000000701400000, 0x0000000701400000|100%| O|  |TAMS 0x0000000701200000| PB 0x0000000701200000| Untracked  |  10|0x0000000701400000, 0x0000000701600000, 0x0000000701600000|100%| O|  |TAMS 0x0000000701400000| PB 0x0000000701400000| Untracked  |  11|0x0000000701600000, 0x0000000701800000, 0x0000000701800000|100%| O|  |TAMS 0x0000000701600000| PB 0x0000000701600000| Untracked  |  12|0x0000000701800000, 0x0000000701a00000, 0x0000000701a00000|100%| O|  |TAMS 0x0000000701800000| PB 0x0000000701800000| Untracked  |  13|0x0000000701a00000, 0x0000000701c00000, 0x0000000701c00000|100%|HS|  |TAMS 0x0000000701a00000| PB 0x0000000701a00000| Complete  |  14|0x0000000701c00000, 0x0000000701e00000, 0x0000000701e00000|100%|HS|  |TAMS 0x0000000701c00000| PB 0x0000000701c00000| Complete  |  15|0x0000000701e00000, 0x0000000702000000, 0x0000000702000000|100%|HC|  |TAMS 0x0000000701e00000| PB 0x0000000701e00000| Complete  |  16|0x0000000702000000, 0x0000000702200000, 0x0000000702200000|100%|HS|  |TAMS 0x0000000702000000| PB 0x0000000702000000| Complete  |  17|0x0000000702200000, 0x0000000702400000, 0x0000000702400000|100%|HC|  |TAMS 0x0000000702200000| PB 0x0000000702200000| Complete  |  18|0x0000000702400000, 0x0000000702600000, 0x0000000702600000|100%| O|  |TAMS 0x0000000702400000| PB 0x0000000702400000| Untracked  |  19|0x0000000702600000, 0x0000000702800000, 0x0000000702800000|100%| O|  |TAMS 0x0000000702600000| PB 0x0000000702600000| Untracked  |  20|0x0000000702800000, 0x0000000702a00000, 0x0000000702a00000|100%| O|  |TAMS 0x0000000702800000| PB 0x0000000702800000| Untracked  |  21|0x0000000702a00000, 0x0000000702c00000, 0x0000000702c00000|100%|HS|  |TAMS 0x0000000702a00000| PB 0x0000000702a00000| Complete  |  22|0x0000000702c00000, 0x0000000702e00000, 0x0000000702e00000|100%|HC|  |TAMS 0x0000000702c00000| PB 0x0000000702c00000| Complete  |  23|0x0000000702e00000, 0x0000000703000000, 0x0000000703000000|100%| O|  |TAMS 0x0000000702e00000| PB 0x0000000702e00000| Untracked  |  24|0x0000000703000000, 0x000000070312c580, 0x0000000703200000| 58%| O|  |TAMS 0x0000000703000000| PB 0x0000000703000000| Untracked  |  25|0x0000000703200000, 0x0000000703200000, 0x0000000703400000|  0%| F|  |TAMS 0x0000000703200000| PB 0x0000000703200000| Untracked  |  26|0x0000000703400000, 0x0000000703600000, 0x0000000703600000|100%| O|  |TAMS 0x0000000703400000| PB 0x0000000703400000| Untracked  |  27|0x0000000703600000, 0x0000000703800000, 0x0000000703800000|100%| O|  |TAMS 0x0000000703600000| PB 0x0000000703600000| Untracked  |  28|0x0000000703800000, 0x0000000703a00000, 0x0000000703a00000|100%| O|  |TAMS 0x0000000703800000| PB 0x0000000703800000| Untracked  |  29|0x0000000703a00000, 0x0000000703c00000, 0x0000000703c00000|100%| O|  |TAMS 0x0000000703a00000| PB 0x0000000703a00000| Untracked  |  30|0x0000000703c00000, 0x0000000703e00000, 0x0000000703e00000|100%| O|  |TAMS 0x0000000703c00000| PB 0x0000000703c00000| Untracked  |  31|0x0000000703e00000, 0x0000000704000000, 0x0000000704000000|100%| O|  |TAMS 0x0000000703e00000| PB 0x0000000703e00000| Untracked  |  32|0x0000000704000000, 0x0000000704200000, 0x0000000704200000|100%| O|  |TAMS 0x0000000704000000| PB 0x0000000704000000| Untracked  |  33|0x0000000704200000, 0x0000000704400000, 0x0000000704400000|100%| O|  |TAMS 0x0000000704200000| PB 0x0000000704200000| Untracked  |  34|0x0000000704400000, 0x0000000704600000, 0x0000000704600000|100%| O|  |TAMS 0x0000000704400000| PB 0x0000000704400000| Untracked  |  35|0x0000000704600000, 0x0000000704800000, 0x0000000704800000|100%| O|  |TAMS 0x0000000704600000| PB 0x0000000704600000| Untracked  |  36|0x0000000704800000, 0x0000000704a00000, 0x0000000704a00000|100%| O|  |TAMS 0x0000000704800000| PB 0x0000000704800000| Untracked  |  37|0x0000000704a00000, 0x0000000704a00000, 0x0000000704c00000|  0%| F|  |TAMS 0x0000000704a00000| PB 0x0000000704a00000| Untracked  |  38|0x0000000704c00000, 0x0000000704c00000, 0x0000000704e00000|  0%| F|  |TAMS 0x0000000704c00000| PB 0x0000000704c00000| Untracked  |  39|0x0000000704e00000, 0x0000000704e00000, 0x0000000705000000|  0%| F|  |TAMS 0x0000000704e00000| PB 0x0000000704e00000| Untracked  |  40|0x0000000705000000, 0x0000000705000000, 0x0000000705200000|  0%| F|  |TAMS 0x0000000705000000| PB 0x0000000705000000| Untracked  |  41|0x0000000705200000, 0x0000000705200000, 0x0000000705400000|  0%| F|  |TAMS 0x0000000705200000| PB 0x0000000705200000| Untracked  |  42|0x0000000705400000, 0x0000000705400000, 0x0000000705600000|  0%| F|  |TAMS 0x0000000705400000| PB 0x0000000705400000| Untracked  |  43|0x0000000705600000, 0x0000000705600000, 0x0000000705800000|  0%| F|  |TAMS 0x0000000705600000| PB 0x0000000705600000| Untracked  |  44|0x0000000705800000, 0x0000000705800000, 0x0000000705a00000|  0%| F|  |TAMS 0x0000000705800000| PB 0x0000000705800000| Untracked  |  45|0x0000000705a00000, 0x0000000705a00000, 0x0000000705c00000|  0%| F|  |TAMS 0x0000000705a00000| PB 0x0000000705a00000| Untracked  |  46|0x0000000705c00000, 0x0000000705c00000, 0x0000000705e00000|  0%| F|  |TAMS 0x0000000705c00000| PB 0x0000000705c00000| Untracked  |  47|0x0000000705e00000, 0x0000000705e00000, 0x0000000706000000|  0%| F|  |TAMS 0x0000000705e00000| PB 0x0000000705e00000| Untracked  |  48|0x0000000706000000, 0x0000000706000000, 0x0000000706200000|  0%| F|  |TAMS 0x0000000706000000| PB 0x0000000706000000| Untracked  |  49|0x0000000706200000, 0x0000000706200000, 0x0000000706400000|  0%| F|  |TAMS 0x0000000706200000| PB 0x0000000706200000| Untracked  |  50|0x0000000706400000, 0x0000000706600000, 0x0000000706600000|100%| S|CS|TAMS 0x0000000706400000| PB 0x0000000706400000| Complete  |  51|0x0000000706600000, 0x0000000706800000, 0x0000000706800000|100%| S|CS|TAMS 0x0000000706600000| PB 0x0000000706600000| Complete  |  52|0x0000000706800000, 0x0000000706a00000, 0x0000000706a00000|100%| S|CS|TAMS 0x0000000706800000| PB 0x0000000706800000| Complete  |  53|0x0000000706a00000, 0x0000000706c00000, 0x0000000706c00000|100%| S|CS|TAMS 0x0000000706a00000| PB 0x0000000706a00000| Complete  |  54|0x0000000706c00000, 0x0000000706e00000, 0x0000000706e00000|100%| S|CS|TAMS 0x0000000706c00000| PB 0x0000000706c00000| Complete  |  55|0x0000000706e00000, 0x0000000707000000, 0x0000000707000000|100%| S|CS|TAMS 0x0000000706e00000| PB 0x0000000706e00000| Complete  |  56|0x0000000707000000, 0x0000000707200000, 0x0000000707200000|100%| S|CS|TAMS 0x0000000707000000| PB 0x0000000707000000| Complete  |  57|0x0000000707200000, 0x0000000707400000, 0x0000000707400000|100%| S|CS|TAMS 0x0000000707200000| PB 0x0000000707200000| Complete  |  58|0x0000000707400000, 0x0000000707600000, 0x0000000707600000|100%| S|CS|TAMS 0x0000000707400000| PB 0x0000000707400000| Complete  |  59|0x0000000707600000, 0x0000000707600000, 0x0000000707800000|  0%| F|  |TAMS 0x0000000707600000| PB 0x0000000707600000| Untracked  |  60|0x0000000707800000, 0x0000000707800000, 0x0000000707a00000|  0%| F|  |TAMS 0x0000000707800000| PB 0x0000000707800000| Untracked  |  61|0x0000000707a00000, 0x0000000707a00000, 0x0000000707c00000|  0%| F|  |TAMS 0x0000000707a00000| PB 0x0000000707a00000| Untracked  |  62|0x0000000707c00000, 0x0000000707c00000, 0x0000000707e00000|  0%| F|  |TAMS 0x0000000707c00000| PB 0x0000000707c00000| Untracked  |  63|0x0000000707e00000, 0x0000000707e00000, 0x0000000708000000|  0%| F|  |TAMS 0x0000000707e00000| PB 0x0000000707e00000| Untracked  |  64|0x0000000708000000, 0x0000000708000000, 0x0000000708200000|  0%| F|  |TAMS 0x0000000708000000| PB 0x0000000708000000| Untracked  |  65|0x0000000708200000, 0x0000000708200000, 0x0000000708400000|  0%| F|  |TAMS 0x0000000708200000| PB 0x0000000708200000| Untracked  |  66|0x0000000708400000, 0x0000000708400000, 0x0000000708600000|  0%| F|  |TAMS 0x0000000708400000| PB 0x0000000708400000| Untracked  |  67|0x0000000708600000, 0x0000000708600000, 0x0000000708800000|  0%| F|  |TAMS 0x0000000708600000| PB 0x0000000708600000| Untracked  |  68|0x0000000708800000, 0x0000000708800000, 0x0000000708a00000|  0%| F|  |TAMS 0x0000000708800000| PB 0x0000000708800000| Untracked  |  69|0x0000000708a00000, 0x0000000708a00000, 0x0000000708c00000|  0%| F|  |TAMS 0x0000000708a00000| PB 0x0000000708a00000| Untracked  |  70|0x0000000708c00000, 0x0000000708c00000, 0x0000000708e00000|  0%| F|  |TAMS 0x0000000708c00000| PB 0x0000000708c00000| Untracked  |  71|0x0000000708e00000, 0x0000000708e00000, 0x0000000709000000|  0%| F|  |TAMS 0x0000000708e00000| PB 0x0000000708e00000| Untracked  |  72|0x0000000709000000, 0x0000000709000000, 0x0000000709200000|  0%| F|  |TAMS 0x0000000709000000| PB 0x0000000709000000| Untracked  |  73|0x0000000709200000, 0x0000000709200000, 0x0000000709400000|  0%| F|  |TAMS 0x0000000709200000| PB 0x0000000709200000| Untracked  |  74|0x0000000709400000, 0x0000000709400000, 0x0000000709600000|  0%| F|  |TAMS 0x0000000709400000| PB 0x0000000709400000| Untracked  |  75|0x0000000709600000, 0x0000000709600000, 0x0000000709800000|  0%| F|  |TAMS 0x0000000709600000| PB 0x0000000709600000| Untracked  |  76|0x0000000709800000, 0x0000000709800000, 0x0000000709a00000|  0%| F|  |TAMS 0x0000000709800000| PB 0x0000000709800000| Untracked  |  77|0x0000000709a00000, 0x0000000709a00000, 0x0000000709c00000|  0%| F|  |TAMS 0x0000000709a00000| PB 0x0000000709a00000| Untracked  |  78|0x0000000709c00000, 0x0000000709c00000, 0x0000000709e00000|  0%| F|  |TAMS 0x0000000709c00000| PB 0x0000000709c00000| Untracked  |  79|0x0000000709e00000, 0x0000000709e00000, 0x000000070a000000|  0%| F|  |TAMS 0x0000000709e00000| PB 0x0000000709e00000| Untracked  |  80|0x000000070a000000, 0x000000070a000000, 0x000000070a200000|  0%| F|  |TAMS 0x000000070a000000| PB 0x000000070a000000| Untracked  |  81|0x000000070a200000, 0x000000070a200000, 0x000000070a400000|  0%| F|  |TAMS 0x000000070a200000| PB 0x000000070a200000| Untracked  |  82|0x000000070a400000, 0x000000070a400000, 0x000000070a600000|  0%| F|  |TAMS 0x000000070a400000| PB 0x000000070a400000| Untracked  |  83|0x000000070a600000, 0x000000070a600000, 0x000000070a800000|  0%| F|  |TAMS 0x000000070a600000| PB 0x000000070a600000| Untracked  |  84|0x000000070a800000, 0x000000070a800000, 0x000000070aa00000|  0%| F|  |TAMS 0x000000070a800000| PB 0x000000070a800000| Untracked  |  85|0x000000070aa00000, 0x000000070aa00000, 0x000000070ac00000|  0%| F|  |TAMS 0x000000070aa00000| PB 0x000000070aa00000| Untracked  |  86|0x000000070ac00000, 0x000000070ac00000, 0x000000070ae00000|  0%| F|  |TAMS 0x000000070ac00000| PB 0x000000070ac00000| Untracked  |  87|0x000000070ae00000, 0x000000070ae00000, 0x000000070b000000|  0%| F|  |TAMS 0x000000070ae00000| PB 0x000000070ae00000| Untracked  |  88|0x000000070b000000, 0x000000070b000000, 0x000000070b200000|  0%| F|  |TAMS 0x000000070b000000| PB 0x000000070b000000| Untracked  |  89|0x000000070b200000, 0x000000070b200000, 0x000000070b400000|  0%| F|  |TAMS 0x000000070b200000| PB 0x000000070b200000| Untracked  |  90|0x000000070b400000, 0x000000070b400000, 0x000000070b600000|  0%| F|  |TAMS 0x000000070b400000| PB 0x000000070b400000| Untracked  |  91|0x000000070b600000, 0x000000070b600000, 0x000000070b800000|  0%| F|  |TAMS 0x000000070b600000| PB 0x000000070b600000| Untracked  |  92|0x000000070b800000, 0x000000070b800000, 0x000000070ba00000|  0%| F|  |TAMS 0x000000070b800000| PB 0x000000070b800000| Untracked  |  93|0x000000070ba00000, 0x000000070ba00000, 0x000000070bc00000|  0%| F|  |TAMS 0x000000070ba00000| PB 0x000000070ba00000| Untracked  |  94|0x000000070bc00000, 0x000000070bc00000, 0x000000070be00000|  0%| F|  |TAMS 0x000000070bc00000| PB 0x000000070bc00000| Untracked  |  95|0x000000070be00000, 0x000000070be00000, 0x000000070c000000|  0%| F|  |TAMS 0x000000070be00000| PB 0x000000070be00000| Untracked  |  96|0x000000070c000000, 0x000000070c000000, 0x000000070c200000|  0%| F|  |TAMS 0x000000070c000000| PB 0x000000070c000000| Untracked  |  97|0x000000070c200000, 0x000000070c200000, 0x000000070c400000|  0%| F|  |TAMS 0x000000070c200000| PB 0x000000070c200000| Untracked  |  98|0x000000070c400000, 0x000000070c400000, 0x000000070c600000|  0%| F|  |TAMS 0x000000070c400000| PB 0x000000070c400000| Untracked  |  99|0x000000070c600000, 0x000000070c600000, 0x000000070c800000|  0%| F|  |TAMS 0x000000070c600000| PB 0x000000070c600000| Untracked  | 100|0x000000070c800000, 0x000000070c800000, 0x000000070ca00000|  0%| F|  |TAMS 0x000000070c800000| PB 0x000000070c800000| Untracked  | 101|0x000000070ca00000, 0x000000070ca00000, 0x000000070cc00000|  0%| F|  |TAMS 0x000000070ca00000| PB 0x000000070ca00000| Untracked  | 102|0x000000070cc00000, 0x000000070cc00000, 0x000000070ce00000|  0%| F|  |TAMS 0x000000070cc00000| PB 0x000000070cc00000| Untracked  | 103|0x000000070ce00000, 0x000000070ce00000, 0x000000070d000000|  0%| F|  |TAMS 0x000000070ce00000| PB 0x000000070ce00000| Untracked  | 104|0x000000070d000000, 0x000000070d062fe8, 0x000000070d200000| 19%| E|  |TAMS 0x000000070d000000| PB 0x000000070d000000| Complete  | 105|0x000000070d200000, 0x000000070d400000, 0x000000070d400000|100%| E|CS|TAMS 0x000000070d200000| PB 0x000000070d200000| Complete  | 106|0x000000070d400000, 0x000000070d600000, 0x000000070d600000|100%| E|CS|TAMS 0x000000070d400000| PB 0x000000070d400000| Complete  | 107|0x000000070d600000, 0x000000070d800000, 0x000000070d800000|100%| E|CS|TAMS 0x000000070d600000| PB 0x000000070d600000| Complete  | 108|0x000000070d800000, 0x000000070da00000, 0x000000070da00000|100%| E|CS|TAMS 0x000000070d800000| PB 0x000000070d800000| Complete  | 109|0x000000070da00000, 0x000000070dc00000, 0x000000070dc00000|100%| E|CS|TAMS 0x000000070da00000| PB 0x000000070da00000| Complete  | 110|0x000000070dc00000, 0x000000070de00000, 0x000000070de00000|100%| E|CS|TAMS 0x000000070dc00000| PB 0x000000070dc00000| Complete  | 111|0x000000070de00000, 0x000000070e000000, 0x000000070e000000|100%| E|CS|TAMS 0x000000070de00000| PB 0x000000070de00000| Complete  | 112|0x000000070e000000, 0x000000070e200000, 0x000000070e200000|100%| E|CS|TAMS 0x000000070e000000| PB 0x000000070e000000| Complete  | 113|0x000000070e200000, 0x000000070e400000, 0x000000070e400000|100%| E|CS|TAMS 0x000000070e200000| PB 0x000000070e200000| Complete  | 114|0x000000070e400000, 0x000000070e600000, 0x000000070e600000|100%| E|CS|TAMS 0x000000070e400000| PB 0x000000070e400000| Complete  | 115|0x000000070e600000, 0x000000070e800000, 0x000000070e800000|100%| E|CS|TAMS 0x000000070e600000| PB 0x000000070e600000| Complete  | 116|0x000000070e800000, 0x000000070ea00000, 0x000000070ea00000|100%| E|CS|TAMS 0x000000070e800000| PB 0x000000070e800000| Complete  | 117|0x000000070ea00000, 0x000000070ec00000, 0x000000070ec00000|100%| E|CS|TAMS 0x000000070ea00000| PB 0x000000070ea00000| Complete  | 118|0x000000070ec00000, 0x000000070ee00000, 0x000000070ee00000|100%| E|CS|TAMS 0x000000070ec00000| PB 0x000000070ec00000| Complete  | 119|0x000000070ee00000, 0x000000070f000000, 0x000000070f000000|100%| E|CS|TAMS 0x000000070ee00000| PB 0x000000070ee00000| Complete  | 120|0x000000070f000000, 0x000000070f200000, 0x000000070f200000|100%| E|CS|TAMS 0x000000070f000000| PB 0x000000070f000000| Complete  | 121|0x000000070f200000, 0x000000070f400000, 0x000000070f400000|100%| E|CS|TAMS 0x000000070f200000| PB 0x000000070f200000| Complete  | 122|0x000000070f400000, 0x000000070f600000, 0x000000070f600000|100%| E|CS|TAMS 0x000000070f400000| PB 0x000000070f400000| Complete  | 123|0x000000070f600000, 0x000000070f800000, 0x000000070f800000|100%| E|CS|TAMS 0x000000070f600000| PB 0x000000070f600000| Complete  | 124|0x000000070f800000, 0x000000070fa00000, 0x000000070fa00000|100%| E|CS|TAMS 0x000000070f800000| PB 0x000000070f800000| Complete  | 125|0x000000070fa00000, 0x000000070fc00000, 0x000000070fc00000|100%| E|CS|TAMS 0x000000070fa00000| PB 0x000000070fa00000| Complete  | 126|0x000000070fc00000, 0x000000070fe00000, 0x000000070fe00000|100%| E|CS|TAMS 0x000000070fc00000| PB 0x000000070fc00000| Complete  | 127|0x000000070fe00000, 0x0000000710000000, 0x0000000710000000|100%| E|CS|TAMS 0x000000070fe00000| PB 0x000000070fe00000| Complete  Card table byte_map: [0x00000277279f0000,0x00000277281f0000] _byte_map_base: 0x00000277241f0000 Marking Bits: (CMBitMap*) 0x00000277135a3fb0  Bits: [0x00000277281f0000, 0x000002772c1f0000) Polling page: 0x0000027711d10000 Metaspace: Usage:   Non-class:     24.36 MB used.       Class:      2.63 MB used.        Both:     26.99 MB used. Virtual space:   Non-class space:       64.00 MB reserved,      24.56 MB ( 38%) committed,  1 nodes.       Class space:        1.00 GB reserved,       2.88 MB ( <1%) committed,  1 nodes.              Both:        1.06 GB reserved,      27.44 MB (  3%) committed.  Chunk freelists:    Non-Class:  7.20 MB        Class:  13.12 MB         Both:  20.32 MB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 35.88 MB CDS: off  - commit_granule_bytes: 65536.  - commit_granule_words: 8192.  - virtual_space_node_default_size: 8388608.  - enlarge_chunks_in_place: 1.  - use_allocation_guard: 0. Internal statistics: num_allocs_failed_limit: 6. num_arena_births: 392. num_arena_deaths: 0. num_vsnodes_births: 2. num_vsnodes_deaths: 0. num_space_committed: 439. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 6. num_chunks_taken_from_freelist: 847. num_chunk_merges: 0. num_chunk_splits: 565. num_chunks_enlarged: 407. num_inconsistent_stats: 0. CodeHeap 'non-profiled nmethods': size=119168Kb used=3458Kb max_used=3458Kb free=115709Kb  bounds [0x000002771edc0000, 0x000002771f130000, 0x0000027726220000] CodeHeap 'profiled nmethods': size=119104Kb used=7593Kb max_used=7593Kb free=111510Kb  bounds [0x0000027717220000, 0x0000027717990000, 0x000002771e670000] CodeHeap 'non-nmethods': size=7488Kb used=3888Kb max_used=3888Kb free=3599Kb  bounds [0x000002771e670000, 0x000002771ea40000, 0x000002771edc0000]  total_blobs=5057 nmethods=3914 adapters=1044  compilation: enabled               stopped_count=0, restarted_count=0  full_count=0 Compilation events (20 events): Event: 3.891 Thread 0x000002772f45fb10 nmethod 3905 0x0000027717985a90 code [0x0000027717985c40, 0x0000027717985e88] Event: 3.891 Thread 0x000002773452f5b0 3908       4       java.lang.Integer::toUnsignedLong (7 bytes) Event: 3.891 Thread 0x000002773452f5b0 nmethod 3908 0x000002771f11fc90 code [0x000002771f11fe00, 0x000002771f11fe68] Event: 3.892 Thread 0x000002772fbe0840 3909       3       sun.misc.Unsafe::putInt (11 bytes) Event: 3.892 Thread 0x000002772fbe0840 nmethod 3909 0x0000027717985f90 code [0x0000027717986120, 0x0000027717986230] Event: 3.892 Thread 0x000002772fbe0840 3910       3       org.lwjgl.system.MemoryUtil::encodeASCIIUnsafe (53 bytes) Event: 3.892 Thread 0x000002772fbe0840 nmethod 3910 0x0000027717986310 code [0x0000027717986500, 0x00000277179868f8] Event: 3.914 Thread 0x000002772f3ede60 3911       3       java.lang.invoke.BoundMethodHandle::rebind (14 bytes) Event: 3.914 Thread 0x000002772fbe0840 3912       3       java.lang.invoke.BoundMethodHandle::tooComplex (27 bytes) Event: 3.914 Thread 0x000002772f45fb10 3913       3       java.lang.invoke.BoundMethodHandle::fieldCount (8 bytes) Event: 3.914 Thread 0x000002772fb2bd10 3914       3       java.lang.invoke.LambdaForm::expressionCount (11 bytes) Event: 3.914 Thread 0x000002773452e140 3915       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Event: 3.915 Thread 0x000002772fb2bd10 nmethod 3914 0x0000027717986a90 code [0x0000027717986c20, 0x0000027717986d40] Event: 3.915 Thread 0x000002772f45fb10 nmethod 3913 0x0000027717986e10 code [0x0000027717986fe0, 0x00000277179872d8] Event: 3.915 Thread 0x000002772fbe0840 nmethod 3912 0x0000027717987410 code [0x0000027717987600, 0x0000027717987a68] Event: 3.915 Thread 0x000002772f3ede60 nmethod 3911 0x0000027717987c10 code [0x0000027717987e20, 0x0000027717988378] Event: 3.915 Thread 0x000002772f45fb10 3918       3       java.lang.invoke.LambdaFormBuffer::indexOf (33 bytes) Event: 3.915 Thread 0x000002772f45fb10 nmethod 3918 0x0000027717988590 code [0x0000027717988760, 0x0000027717988b10] Event: 3.916 Thread 0x000002772fbe0840 3919       3       java.lang.invoke.LambdaFormBuffer::growNames (281 bytes) Event: 3.917 Thread 0x000002772fbe0840 nmethod 3919 0x0000027717988c10 code [0x0000027717988ec0, 0x0000027717989f58] GC Heap History (14 events): Event: 0.523 GC heap before {Heap before GC invocations=0 (full 0):  garbage-first heap   total 262144K, used 38912K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 11 young (22528K), 0 survivors (0K)  Metaspace       used 10273K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.527 GC heap after {Heap after GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 23099K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10273K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.606 GC heap before {Heap before GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 47675K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 14 young (28672K), 2 survivors (4096K)  Metaspace       used 10278K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.610 GC heap after {Heap after GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 27824K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10278K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 1.047 GC heap before {Heap before GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 58544K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 17 young (34816K), 2 survivors (4096K)  Metaspace       used 12660K, committed 12928K, reserved 1114112K   class space    used 1067K, committed 1216K, reserved 1048576K } Event: 1.050 GC heap after {Heap after GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 29041K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 12660K, committed 12928K, reserved 1114112K   class space    used 1067K, committed 1216K, reserved 1048576K } Event: 1.710 GC heap before {Heap before GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 205169K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 2 survivors (4096K)  Metaspace       used 13588K, committed 13824K, reserved 1114112K   class space    used 1150K, committed 1280K, reserved 1048576K } Event: 1.716 GC heap after {Heap after GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 47722K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 8 young (16384K), 8 survivors (16384K)  Metaspace       used 13588K, committed 13824K, reserved 1114112K   class space    used 1150K, committed 1280K, reserved 1048576K } Event: 2.168 GC heap before {Heap before GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 207466K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 8 survivors (16384K)  Metaspace       used 13845K, committed 14080K, reserved 1114112K   class space    used 1159K, committed 1280K, reserved 1048576K } Event: 2.182 GC heap after {Heap after GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 87863K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 10 young (20480K), 10 survivors (20480K)  Metaspace       used 13845K, committed 14080K, reserved 1114112K   class space    used 1159K, committed 1280K, reserved 1048576K } Event: 2.664 GC heap before {Heap before GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 159543K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 46 young (94208K), 10 survivors (20480K)  Metaspace       used 21273K, committed 21504K, reserved 1114112K   class space    used 1977K, committed 2112K, reserved 1048576K } Event: 2.670 GC heap after {Heap after GC invocations=6 (full 0):  garbage-first heap   total 262144K, used 72852K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 4 young (8192K), 4 survivors (8192K)  Metaspace       used 21273K, committed 21504K, reserved 1114112K   class space    used 1977K, committed 2112K, reserved 1048576K } Event: 3.576 GC heap before {Heap before GC invocations=7 (full 0):  garbage-first heap   total 262144K, used 210068K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 69 young (141312K), 4 survivors (8192K)  Metaspace       used 25540K, committed 25920K, reserved 1114112K   class space    used 2492K, committed 2688K, reserved 1048576K } Event: 3.586 GC heap after {Heap after GC invocations=8 (full 0):  garbage-first heap   total 262144K, used 91313K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 9 young (18432K), 9 survivors (18432K)  Metaspace       used 25540K, committed 25920K, reserved 1114112K   class space    used 2492K, committed 2688K, reserved 1048576K } Dll operation events (11 events): Event: 0.010 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll Event: 0.018 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.064 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll Event: 0.157 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll Event: 0.159 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll Event: 0.166 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.273 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll Event: 0.679 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll Event: 2.500 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll Event: 2.503 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll Event: 3.859 Loaded shared library \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\lwjgl.dll Deoptimization events (20 events): Event: 3.831 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771eeb824c sp=0x000000fb5a5fc8b0 Event: 3.831 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc828 mode 2 Event: 3.836 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002771ef3a72c relative=0x00000000000001cc Event: 3.836 Thread 0x000002771353b650 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002771ef3a72c method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.836 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef3a72c sp=0x000000fb5a5fdc40 Event: 3.836 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fdc20 mode 2 Event: 3.836 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002771ef3a72c relative=0x00000000000001cc Event: 3.836 Thread 0x000002771353b650 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002771ef3a72c method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.836 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef3a72c sp=0x000000fb5a5fdc40 Event: 3.836 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fdc20 mode 2 Event: 3.855 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002771ef578c0 relative=0x0000000000000d40 Event: 3.855 Thread 0x000002771353b650 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002771ef578c0 method=sun.nio.ch.FileChannelImpl.read(Ljava/nio/ByteBuffer;)I @ 196 c2 Event: 3.855 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef578c0 sp=0x000000fb5a5fca00 Event: 3.855 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc9b8 mode 2 Event: 3.866 Thread 0x000002771353b650 DEOPT PACKING pc=0x0000027717669dd7 sp=0x000000fb5a5fc960 Event: 3.866 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c4e42 sp=0x000000fb5a5fbe18 mode 0 Event: 3.885 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002771f0254e0 relative=0x00000000000016a0 Event: 3.885 Thread 0x000002771353b650 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002771f0254e0 method=java.util.concurrent.ConcurrentHashMap.transfer([Ljava/util/concurrent/ConcurrentHashMap$Node;[Ljava/util/concurrent/ConcurrentHashMap$Node;)V @ 26 c2 Event: 3.885 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771f0254e0 sp=0x000000fb5a5fc310 Event: 3.885 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc280 mode 2 Classes loaded (20 events): Event: 3.877 Loading class java/nio/DirectCharBufferU Event: 3.877 Loading class java/nio/DirectCharBufferU done Event: 3.877 Loading class java/nio/DirectFloatBufferU Event: 3.877 Loading class java/nio/DirectFloatBufferU done Event: 3.877 Loading class java/nio/DirectDoubleBufferU Event: 3.878 Loading class java/nio/DirectDoubleBufferU done Event: 3.879 Loading class java/util/function/LongPredicate Event: 3.879 Loading class java/util/function/LongPredicate done Event: 3.882 Loading class java/nio/InvalidMarkException Event: 3.882 Loading class java/nio/InvalidMarkException done Event: 3.882 Loading class java/nio/BufferUnderflowException Event: 3.883 Loading class java/nio/BufferUnderflowException done Event: 3.913 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask Event: 3.913 Loading class java/util/concurrent/FutureTask Event: 3.913 Loading class java/util/concurrent/FutureTask done Event: 3.913 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask done Event: 3.913 Loading class java/util/concurrent/FutureTask$WaitNode Event: 3.913 Loading class java/util/concurrent/FutureTask$WaitNode done Event: 3.913 Loading class java/util/concurrent/Executors$RunnableAdapter Event: 3.913 Loading class java/util/concurrent/Executors$RunnableAdapter done Classes unloaded (0 events): No events Classes redefined (0 events): No events Internal exceptions (20 events): Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070da96fb0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object)'> (0x000000070da96fb0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070da9afe0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, int, int)'> (0x000000070da9afe0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daa24d8}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, long, long)'> (0x000000070daa24d8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daa8f70}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, float, float)'> (0x000000070daa8f70)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daafa00}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, double, double)'> (0x000000070daafa00)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070dab3fa0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, long)'> (0x000000070dab3fa0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.832 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d4ae350}: method resolution failed> (0x000000070d4ae350)  thrown [s\src\hotspot\share\prims\methodHandles.cpp, line 1144] Event: 3.837 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d4e05f8}> (0x000000070d4e05f8)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.848 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d5ce078}: 'void java.lang.System.load(java.lang.String, java.lang.Class)'> (0x000000070d5ce078)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.850 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d5e4038}: 'void java.lang.System.loadLibrary(java.lang.String, java.lang.Class)'> (0x000000070d5e4038)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.857 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d207638}> (0x000000070d207638)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.857 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d207a58}> (0x000000070d207a58)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.873 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d2482a0}> (0x000000070d2482a0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.873 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d2486e0}> (0x000000070d2486e0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.879 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2988d0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, int, long)'> (0x000000070d2988d0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.880 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d29dbd8}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, int)'> (0x000000070d29dbd8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.881 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2ae9a0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, long, long)'> (0x000000070d2ae9a0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2b4070}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, long)'> (0x000000070d2b4070)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2b7898}: 'java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, long, java.lang.Object)'> (0x000000070d2b7898)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2bea90}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, java.lang.Object, long)'> (0x000000070d2bea90)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] ZGC Phase Switch (0 events): No events VM Operations (20 events): Event: 2.677 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) Event: 2.677 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) done Event: 2.681 Executing VM operation: G1PauseRemark Event: 2.683 Executing VM operation: G1PauseRemark done Event: 2.688 Executing VM operation: G1PauseCleanup Event: 2.688 Executing VM operation: G1PauseCleanup done Event: 2.784 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.784 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.785 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.785 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.822 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.822 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.833 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.833 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.844 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.844 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.886 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.886 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.576 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) Event: 3.586 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done Memory protections (0 events): No events Nmethod flushes (0 events): No events Events (20 events): Event: 0.488 Thread 0x000002772f3ede60 Thread added: 0x0000027734206af0 Event: 0.545 Thread 0x000002772f6f2ff0 Thread added: 0x000002772fb59250 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x000002773402f810 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x00000277344ab6e0 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x00000277344a9fa0 Event: 1.431 Thread 0x00000277344a9fa0 Thread exited: 0x00000277344a9fa0 Event: 1.835 Thread 0x00000277344ab6e0 Thread exited: 0x00000277344ab6e0 Event: 2.029 Thread 0x000002773402f810 Thread exited: 0x000002773402f810 Event: 2.029 Thread 0x000002772fb59250 Thread exited: 0x000002772fb59250 Event: 2.033 Thread 0x0000027734206af0 Thread exited: 0x0000027734206af0 Event: 2.255 Thread 0x000002772f6f3690 Thread exited: 0x000002772f6f3690 Event: 2.304 Thread 0x000002772f3ede60 Thread added: 0x000002773452e140 Event: 2.312 Thread 0x000002772fbe0840 Thread added: 0x000002773452f5b0 Event: 2.312 Thread 0x000002772fbe0840 Thread added: 0x000002773452eee0 Event: 2.314 Thread 0x000002773452f5b0 Thread added: 0x000002773452e810 Event: 2.314 Thread 0x000002773452f5b0 Thread added: 0x00000277345310f0 Event: 2.789 Thread 0x000002771353b650 Thread added: 0x0000027734847480 Event: 2.800 Thread 0x0000027734847480 Thread exited: 0x0000027734847480 Event: 3.027 Thread 0x00000277345310f0 Thread added: 0x0000027734530a20 Event: 3.914 Thread 0x000002771353b650 Thread added: 0x0000027738551f10 Dynamic libraries: 0x00007ff7094c0000 - 0x00007ff7094ce000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\javaw.exe 0x00007ff96e1a0000 - 0x00007ff96e406000     C:\WINDOWS\SYSTEM32\ntdll.dll 0x00007ff96d320000 - 0x00007ff96d3e9000     C:\WINDOWS\System32\KERNEL32.DLL 0x00007ff96b900000 - 0x00007ff96bccc000     C:\WINDOWS\System32\KERNELBASE.dll 0x00007ff968380000 - 0x00007ff96841e000     C:\WINDOWS\SYSTEM32\apphelp.dll 0x00007ff96b4e0000 - 0x00007ff96b62b000     C:\WINDOWS\System32\ucrtbase.dll 0x00007ff956500000 - 0x00007ff956518000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jli.dll 0x00007ff9560d0000 - 0x00007ff9560ed000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\VCRUNTIME140.dll 0x00007ff96df90000 - 0x00007ff96e15a000     C:\WINDOWS\System32\USER32.dll 0x00007ff96b330000 - 0x00007ff96b357000     C:\WINDOWS\System32\win32u.dll 0x00007ff96db20000 - 0x00007ff96db4b000     C:\WINDOWS\System32\GDI32.dll 0x00007ff950e90000 - 0x00007ff95112a000     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e\COMCTL32.dll 0x00007ff96bd80000 - 0x00007ff96beb2000     C:\WINDOWS\System32\gdi32full.dll 0x00007ff96da70000 - 0x00007ff96db19000     C:\WINDOWS\System32\msvcrt.dll 0x00007ff96bcd0000 - 0x00007ff96bd73000     C:\WINDOWS\System32\msvcp_win.dll 0x00007ff96d1e0000 - 0x00007ff96d210000     C:\WINDOWS\System32\IMM32.DLL 0x00007ff9564f0000 - 0x00007ff9564fc000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\vcruntime140_1.dll 0x00007ff9493d0000 - 0x00007ff94945d000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\msvcp140.dll 0x00007ff8b8980000 - 0x00007ff8b9718000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server\jvm.dll 0x00007ff96c470000 - 0x00007ff96c522000     C:\WINDOWS\System32\ADVAPI32.dll 0x00007ff96dee0000 - 0x00007ff96df86000     C:\WINDOWS\System32\sechost.dll 0x00007ff96c5e0000 - 0x00007ff96c6f6000     C:\WINDOWS\System32\RPCRT4.dll 0x00007ff96cfa0000 - 0x00007ff96d014000     C:\WINDOWS\System32\WS2_32.dll 0x00007ff96ab70000 - 0x00007ff96abce000     C:\WINDOWS\SYSTEM32\POWRPROF.dll 0x00007ff962a70000 - 0x00007ff962aa6000     C:\WINDOWS\SYSTEM32\WINMM.dll 0x00007ff963f50000 - 0x00007ff963f5b000     C:\WINDOWS\SYSTEM32\VERSION.dll 0x00007ff96ab00000 - 0x00007ff96ab14000     C:\WINDOWS\SYSTEM32\UMPDC.dll 0x00007ff96a0f0000 - 0x00007ff96a10a000     C:\WINDOWS\SYSTEM32\kernel.appcore.dll 0x00007ff956040000 - 0x00007ff95604a000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll 0x00007ff95f8c0000 - 0x00007ff95fb01000     C:\WINDOWS\SYSTEM32\DBGHELP.DLL 0x00007ff96db50000 - 0x00007ff96ded4000     C:\WINDOWS\System32\combase.dll 0x00007ff96d070000 - 0x00007ff96d150000     C:\WINDOWS\System32\OLEAUT32.dll 0x00007ff94fdf0000 - 0x00007ff94fe29000     C:\WINDOWS\SYSTEM32\dbgcore.DLL 0x00007ff96bec0000 - 0x00007ff96bf59000     C:\WINDOWS\System32\bcryptPrimitives.dll 0x00007ff956020000 - 0x00007ff956040000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll 0x00007ff94f3f0000 - 0x00007ff94f408000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll 0x00007ff96c870000 - 0x00007ff96cf9d000     C:\WINDOWS\System32\SHELL32.dll 0x00007ff96b6f0000 - 0x00007ff96b864000     C:\WINDOWS\System32\wintypes.dll 0x00007ff968fc0000 - 0x00007ff969816000     C:\WINDOWS\SYSTEM32\windows.storage.dll 0x00007ff96d4c0000 - 0x00007ff96d5af000     C:\WINDOWS\System32\SHCORE.dll 0x00007ff96d160000 - 0x00007ff96d1c9000     C:\WINDOWS\System32\shlwapi.dll 0x00007ff96b240000 - 0x00007ff96b26f000     C:\WINDOWS\SYSTEM32\profapi.dll 0x00007ff943360000 - 0x00007ff943436000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll 0x00007ff94f3e0000 - 0x00007ff94f3f0000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll 0x00007ff963630000 - 0x00007ff96374e000     C:\WINDOWS\SYSTEM32\WINHTTP.dll 0x00007ff96a660000 - 0x00007ff96a6ca000     C:\WINDOWS\system32\mswsock.dll 0x00007ff94db00000 - 0x00007ff94db16000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll 0x00007ff94e490000 - 0x00007ff94e4a0000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll 0x00007ff94daf0000 - 0x00007ff94dafa000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll 0x00007ff94dae0000 - 0x00007ff94daeb000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll 0x00007ff96c460000 - 0x00007ff96c468000     C:\WINDOWS\System32\PSAPI.DLL 0x00007ff950430000 - 0x00007ff950448000     C:\WINDOWS\system32\napinsp.dll 0x00007ff969c20000 - 0x00007ff969d47000     C:\WINDOWS\SYSTEM32\DNSAPI.dll 0x00007ff969b80000 - 0x00007ff969bb3000     C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL 0x00007ff96d1d0000 - 0x00007ff96d1da000     C:\WINDOWS\System32\NSI.dll 0x00007ff950410000 - 0x00007ff950422000     C:\WINDOWS\System32\winrnr.dll 0x00007ff9500f0000 - 0x00007ff950120000     C:\WINDOWS\system32\nlansp_c.dll 0x00007ff962480000 - 0x00007ff9624a0000     C:\WINDOWS\system32\wshbth.dll 0x00007ff962820000 - 0x00007ff96282b000     C:\Windows\System32\rasadhlp.dll 0x00007ff964640000 - 0x00007ff9646c6000     C:\WINDOWS\System32\fwpuclnt.dll 0x00007ff9499b0000 - 0x00007ff949a2b000     \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\lwjgl.dll 0x00007ff944650000 - 0x00007ff9446d2000     \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\glfw.dll 0x00007ff949380000 - 0x00007ff9493cb000     C:\WINDOWS\SYSTEM32\dinput8.dll 0x00007ff94dac0000 - 0x00007ff94dad2000     C:\WINDOWS\SYSTEM32\xinput1_4.dll 0x00007ff96afd0000 - 0x00007ff96affd000     C:\WINDOWS\SYSTEM32\DEVOBJ.dll 0x00007ff96af70000 - 0x00007ff96afc7000     C:\WINDOWS\SYSTEM32\cfgmgr32.dll 0x00007ff968900000 - 0x00007ff968936000     C:\WINDOWS\SYSTEM32\dwmapi.dll 0x00007ff952220000 - 0x00007ff952401000     C:\WINDOWS\SYSTEM32\inputhost.dll 0x00007ff967fa0000 - 0x00007ff9680c6000     C:\WINDOWS\SYSTEM32\CoreMessaging.dll 0x00007ff968520000 - 0x00007ff9685cf000     C:\WINDOWS\system32\uxtheme.dll 0x00007ff96a920000 - 0x00007ff96a92c000     C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL 0x00007ff96c700000 - 0x00007ff96c85f000     C:\WINDOWS\System32\MSCTF.dll 0x00007ff8df200000 - 0x00007ff8df30c000     C:\WINDOWS\SYSTEM32\opengl32.dll 0x00007ff8dec00000 - 0x00007ff8dec2d000     C:\WINDOWS\SYSTEM32\GLU32.dll 0x00007ff9686c0000 - 0x00007ff968707000     C:\WINDOWS\SYSTEM32\dxcore.dll 0x00007ff968710000 - 0x00007ff968770000     C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll 0x00007ff9595a0000 - 0x00007ff9595ba000     C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll 0x00007ff91df60000 - 0x00007ff91df8d000     C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477\atig6pxx.dll 0x00007ff8b32e0000 - 0x00007ff8b6f6b000     C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477\atio6axx.dll 0x00007ff96d5c0000 - 0x00007ff96da46000     C:\WINDOWS\System32\SETUPAPI.dll 0x00007ff96b870000 - 0x00007ff96b8f0000     C:\WINDOWS\System32\WINTRUST.dll 0x00007ff96b360000 - 0x00007ff96b4d7000     C:\WINDOWS\System32\CRYPT32.dll 0x00007ff96a970000 - 0x00007ff96a983000     C:\WINDOWS\SYSTEM32\MSASN1.dll dbghelp: loaded successfully - version: 4.0.5 - missing functions: none symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server;\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041;C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477 VM Arguments: jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Djna.tmpdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.14.2 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\sejt seed modded forge -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.21.2.xml  java_command: net.minecraftforge.bootstrap.ForgeBootstrap --username BingBongMaster27 --version forge-55.0.17 --gameDir \curseforge\minecraft\Instances\sejt seed modded forge --assetsDir \curseforge\minecraft\Install\assets --assetIndex 24 --uuid f68120281c3a4671b587856055e366bf -UTaeapdqVJtu9-ViDPYrMQeXxB4siChHhnieYhKZWD8QrvGUj5J3N--8KoL8DGJC8vSPEwpb7G9YlMGIynR3o4Ri_ZWErl9iSO1h4WxEjZqwKKKUlJ6OP7co2DrCSnf8tVzTJa2pzhpazZecBVD6o2xKtQv5w92Z7AVn-v7kzk8xZiSY4lscbqb4RO9_NVQouUfU5mxCNmpektaO6f_X4vwOlI9UH8oGvlaGkiuP3qL_Rtmqj87ZdxmnROF82aN-Al_I94DH0OfyVL51Sho6TPoEdAJlHervCVl6HWEtuLYAsCp9ykfYiNsx_44WbTZ-a6FBsg --clientId ODM5YTllZmUtMTQzZS00MjVkLWI1MmUtZTZmMmM4MzkxYTIz --xuid 2535410774699131 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1747844448525.json --launchTarget forge_client java_class_path (initial): \curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.5-55.0.17\forge-1.21.5-55.0.17-universal.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.5-55.0.17\forge-1.21.5-55.0.17-client.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\de\oceanlabs\mcp\mcp_config\1.21.5-20250325.155543\mcp_config-1.21.5-20250325.155543-srg2off.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap\2.1.8\bootstrap-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap-api\2.1.8\bootstrap-api-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\accesstransformers\8.2.2\accesstransformers-8.2.2.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\eventbus\6.2.27\eventbus-6.2.27.jar;\curseforge\minecraft\Install\libraries\net\jodah\typetools\0.6.3\typetools-0.6.3.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forgespi\7.1.5\forgespi-7.1.5.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\coremods\5.2.6\coremods-5.2.6.jar;\curseforge\minecraft\Install\libraries\org\openjdk\nashorn\nashorn-core\15.4\nashorn-core-15.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\modlauncher\10.2.4\modlauncher-10.2.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mergetool-api\1.0\mergetool-api-1.0.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\toml\3.7.4\toml-3.7.4.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\core\3.7.4\core-3.7.4.jar;\curseforge\minecraft\Install\libraries\org\apache\maven\maven-artifact\3.8.8\maven-artifact-3.8.8.jar;\curseforge\minecraft\Install\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-reader\3.25.1\jline-reader-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal\3.25.1\jline-terminal-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal-jna\3.25.1\jline-terminal-jna-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\spongepowered\mixin\0.8.7\mixin-0.8.7.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarSelector\0.3.26\JarJarSelector-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarMetadata\0.3.26\JarJarMetadata-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.21.5-55.0.17\fmlcore-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlloader\1.21.5-55.0.17\fmlloader-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlearlydisplay\1.21.5-55.0.17\fmlearlydisplay-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.21.5-55.0.17\javafmllanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.21.5-55.0.17\lowcodelanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.21.5-55.0.17\mclanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-annotations\2.13.4\jackson-annotations-2.13.4.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-core\2.13.4\jackson-core-2.13.4.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-databind\2.13.4.2\jackson-databind-2.13.4.2.jar;\curseforge\minecraft\Install\libraries\com\github\oshi\oshi-core\6.6.5\oshi-core-6.6.5.jar;\curseforge\minecraft\Install\libraries\com\github\stephenc\jcip\jcip-annotations\1.0-1\jcip-annotations-1.0-1.jar;\curseforge\minecraft\Install\libraries\com\google\code\gson\gson\2.11.0\gson-2.11.0.jar;\curseforge\minecraft\Install\libraries\com\ibm\icu\icu4j\76.1\icu4j-76.1.jar;\curseforge\minecraft\Install\libraries\com\microsoft\azure\msal4j\1.17.2\msal4j-1.17.2.jar;\curseforge\minecraft\Install\libraries\com\mojang\authlib\6.0.58\authlib-6.0.58.jar;\curseforge\minecraft\Install\libraries\com\mojang\blocklist\1.0.10\blocklist-1.0.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\brigadier\1.3.10\brigadier-1.3.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\datafixerupper\8.0.16\datafixerupper-8.0.16.jar;\curseforge\minecraft\Install\libraries\com\mojang\jtracy\1.0.29\jtracy-1.0.29.jar;\curseforge\minecraft\Install\libraries\com\mojang\jtracy\1.0.29\jtracy-1.0.29-natives-windows.jar;\curseforge\minecraft\Install\libraries\com\mojang\logging\1.5.10\logging-1.5.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\patchy\2.2.10\patchy-2.2.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\text2speech\1.18.11\text2speech-1.18.11.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\content-type\2.3\content-type-2.3.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\lang-tag\1.7\lang-tag-1.7.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\nimbus-jose-jwt\9.40\nimbus-jose-jwt-9.40.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\oauth2-oidc-sdk\11.18\oauth2-oidc-sdk-11.18.jar;\curseforge\minecraft\Install\libraries\commons-codec\commons-codec\1.17.1\commons-codec-1.17.1.jar;\curseforge\minecraft\Install\libraries\commons-io\commons-io\2.17.0\commons-io-2.17.0.jar;\curseforge\minecraft\Install\libraries\commons-logging\commons-logging\1.3.4\commons-logging-1.3.4.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-buffer\4.1.118.Final\netty-buffer-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-codec\4.1.118.Final\netty-codec-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-common\4.1.118.Final\netty-common-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-handler\4.1.118.Final\netty-handler-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-resolver\4.1.118.Final\netty-resolver-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-classes-epoll\4.1.118.Final\netty-transport-classes-epoll-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-native-unix-common\4.1.118.Final\netty-transport-native-unix-common-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport\4.1.118.Final\netty-transport-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna-platform\5.15.0\jna-platform-5.15.0.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna\5.15.0\jna-5.15.0.jar;\curseforge\minecraft\Install\libraries\net\minidev\accessors-smart\2.5.1\accessors-smart-2.5.1.jar;\curseforge\minecraft\Install\libraries\net\minidev\json-smart\2.5.1\json-smart-2.5.1.jar;\curseforge\minecraft\Install\libraries\net\sf\jopt-simple\jopt-simple\5.0.4\jopt-simple-5.0.4.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-compress\1.27.1\commons-compress-1.27.1.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-lang3\3.17.0\commons-lang3-3.17.0.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-api\2.24.1\log4j-api-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-core\2.24.1\log4j-core-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-slf4j2-impl\2.24.1\log4j-slf4j2-impl-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\jcraft\jorbis\0.0.17\jorbis-0.0.17.jar;\curseforge\minecraft\Install\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lz4\lz4-java\1.8.0\lz4-java-1.8.0.jar;\curseforge\minecraft\Install\libraries\org\slf4j\slf4j-api\2.0.16\slf4j-api-2.0.16.jar;\curseforge\minecraft\Install\versions\forge-55.0.17\forge-55.0.17.jar Launcher Type: SUN_STANDARD [Global flags]      intx CICompilerCount                          = 12                                        {product} {ergonomic}      uint ConcGCThreads                            = 3                                         {product} {ergonomic}      uint G1ConcRefinementThreads                  = 13                                        {product} {ergonomic}    size_t G1HeapRegionSize                         = 2097152                                   {product} {ergonomic}     uintx GCDrainStackTargetSize                   = 64                                        {product} {ergonomic}     ccstr HeapDumpPath                             = MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump         {manageable} {command line}    size_t InitialHeapSize                          = 268435456                                 {product} {command line}    size_t MarkStackSize                            = 4194304                                   {product} {ergonomic}    size_t MaxHeapSize                              = 4294967296                                {product} {command line}    size_t MaxNewSize                               = 2575302656                                {product} {ergonomic}    size_t MinHeapDeltaBytes                        = 2097152                                   {product} {ergonomic}    size_t MinHeapSize                              = 268435456                                 {product} {command line}     uintx NonNMethodCodeHeapSize                   = 7602480                                {pd product} {ergonomic}     uintx NonProfiledCodeHeapSize                  = 122027880                              {pd product} {ergonomic}     uintx ProfiledCodeHeapSize                     = 122027880                              {pd product} {ergonomic}     uintx ReservedCodeCacheSize                    = 251658240                              {pd product} {ergonomic}      bool SegmentedCodeCache                       = true                                      {product} {ergonomic}    size_t SoftMaxHeapSize                          = 4294967296                             {manageable} {ergonomic}      intx ThreadStackSize                          = 1024                                   {pd product} {command line}      bool UseCompressedOops                        = true                           {product lp64_product} {ergonomic}      bool UseG1GC                                  = true                                      {product} {ergonomic}      bool UseLargePagesIndividualAllocation        = false                                  {pd product} {ergonomic} Logging: Log output configuration:  #0: stdout all=warning uptime,level,tags foldmultilines=false  #1: stderr all=off uptime,level,tags foldmultilines=false Environment Variables: PATH=C:\Program Files (x86)\Common Files\Oracle\Java\java8path;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;\AppData\Local\Microsoft\WindowsApps;\.dotnet\tools; USERNAME=%USERPROFILE% Rick OS=Windows_NT PROCESSOR_IDENTIFIER=AMD64 Family 23 Model 104 Stepping 1, AuthenticAMD TMP=<TMP> TEMP=<TEMP> Periodic native trim disabled ---------------  S Y S T E M  --------------- OS:  Windows 11 , 64 bit Build 26100 (10.0.26100.3912) OS uptime: 2 days 3:13 hours CPU: total 16 (initial active 16) (16 cores per cpu, 2 threads per core) family 23 model 104 stepping 1 microcode 0x8608104, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4a, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, rdtscp, rdpid, f16c Processor Information for the first 16 processors :   Max Mhz: 1801, Current Mhz: 1801, Mhz Limit: 1801 Memory: 4k page, system-wide physical 15693M (4574M free) TotalPageFile size 17997M (AvailPageFile size 1992M) current process WorkingSet (physical memory assigned to process): 456M, peak: 474M current process commit charge ("private bytes"): 512M, peak: 538M vm_info: OpenJDK 64-Bit Server VM (21.0.7+6-LTS) for windows-amd64 JRE (21.0.7+6-LTS), built on 2025-04-09T22:17:25Z by "MicrosoftCorporation" with unknown MS VC++:1939 END.  
    • i'm working on a mod but i need add a camera shake mechanic to it i tried do this with setPich and SetYaw and setRoll but it didn't work then i tried do this with setDelta method but this thing didn't work too so i need help because i don't know how can i add this
  • Topics

×
×
  • Create New...

Important Information

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