Jump to content

Draco18s

Members
  • Posts

    16559
  • Joined

  • Last visited

  • Days Won

    155

Everything posted by Draco18s

  1. Except that the mod I'm trying to ACTUALLY PLAY is NOT updated. So I was trying to recompile my own mod for 1.6.2 so I could play with it ALSO.
  2. And how to I render the entityItems when I enter the world. They now appear when I have right-clicked the container. Client-server disparity. You don't have getDescriptionPacket implemented. Assuming your TE is writing its inventory to its NBT (otherwise items would vanish on save/load), then this is all you need: public Packet getDescriptionPacket() { NBTTagCompound nbtTag = new NBTTagCompound(); this.writeToNBT(nbtTag); return new Packet132TileEntityData(this.xCoord, this.yCoord, this.zCoord, 1, nbtTag); } public void onDataPacket(INetworkManager net, Packet132TileEntityData packet) { readFromNBT(packet.data); }
  3. Fuck the language registry. You shouldn't need it at all. Create a new text file in /assets/MODID/lang called "en_US.lang" and do this: tile.test.name=test BAM. Roasted.
  4. You cheat. GameSettings settings = Minecraft.getMinecraft().settings; That will have all of the settings (including fast/fancy graphics). You can even change them (be sure to change them back when you're done!)
  5. There's a reason the function is called setUnlocalizedName()
  6. Your client proxy is in the wrong place and/or you told Forge to find it someplace that it isn't. Very easy problem to fix.
  7. Ok. This one confuses me. I have this mod that I originally wrote way back in 1.5, then after 1.6 came out I updated it so that it worked for 1.6 and I used Forge 859 to do it. Minding my own business playing around in SSP on 1.6.2 (because I wanted to play around with Invasion Mod) I got a crash-worthy error. "No worries," I thought to myself, "I am using Forge 871, all I need to do is check to make sure that nothing changed since I last compiled." Went through the hassle of downloading 871 (that whole "edit fml.py" business that goes away with Gradle), pulled in my source code for my tiny mod. No errors found by the IDE. No errors when running the game through the IDE. Compiles and reobfuscates without issue. Throws the same error when its added to a regular Minecraft install (full log at end of post). 2014-01-04 15:57:54 [iNFO] [sTDERR] java.lang.NoSuchFieldError: field_76200_c 2014-01-04 15:57:54 [iNFO] [sTDERR] at draco18s.micromods.maps.items.MapEmptyOreDensity.func_77659_a(MapEmptyOreDensity.java:32) Here's the code that is the issue: MapData mapdata = new MapData(s); /*...*/ mapdata.dimension = (byte)par2World.provider.dimensionId; //errors here[/quote] I looked at t the MCP mappings and field_76200_c is mapped to MapData#dimension, so if that's right, it shouldn't crash, and if the mapping is wrong I don't know how to find out what it should be. I have tested this with a clean Minecraft install, only Forge and my mod. Searching the forums have offered various solutions such as "install optifine after Forge--Optifine is not installed--and redownload/reinstall Forge--which I did. [spoiler]2014-01-04 15:57:34 [iNFO] [ForgeModLoader] Forge Mod Loader version 6.2.62.871 for Minecraft 1.6.2 loading 2014-01-04 15:57:34 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) Client VM, version 1.7.0_45, running on Windows 7:x86:6.1, installed at C:\Program Files\Java\jre7 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Java classpath at launch is Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/net/minecraftforge/minecraftforge/9.10.1.871/minecraftforge-9.10.1.871.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/net/minecraft/launchwrapper/1.3/launchwrapper-1.3.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/org/ow2/asm/asm-all/4.1/asm-all-4.1.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/org/scala-lang/scala-library/2.10.2/scala-library-2.10.2.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/org/scala-lang/scala-compiler/2.10.2/scala-compiler-2.10.2.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/lzma/lzma/0.0.1/lzma-0.0.1.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/net/sf/jopt-simple/jopt-simple/4.5/jopt-simple-4.5.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/com/paulscode/codecjorbis/20101023/codecjorbis-20101023.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/com/paulscode/codecwav/20101023/codecwav-20101023.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/com/paulscode/libraryjavasound/20101123/libraryjavasound-20101123.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/com/paulscode/librarylwjglopenal/20100824/librarylwjglopenal-20100824.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/com/paulscode/soundsystem/20120107/soundsystem-20120107.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/argo/argo/2.25_fixed/argo-2.25_fixed.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/org/bouncycastle/bcprov-jdk15on/1.47/bcprov-jdk15on-1.47.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/com/google/guava/guava/14.0/guava-14.0.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/org/apache/commons/commons-lang3/3.1/commons-lang3-3.1.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/commons-io/commons-io/2.4/commons-io-2.4.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/net/java/jinput/jinput/2.0.5/jinput-2.0.5.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/net/java/jutils/jutils/1.0.0/jutils-1.0.0.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/com/google/code/gson/gson/2.2.2/gson-2.2.2.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/org/lwjgl/lwjgl/lwjgl/2.9.0/lwjgl-2.9.0.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/libraries/org/lwjgl/lwjgl/lwjgl_util/2.9.0/lwjgl_util-2.9.0.jar;Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/versions/1.6.2/1.6.2.jar 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Java library path at launch is Z:/Users/Major/Desktop/Minecraft Tools/MultiMC 5/instances/162/natives 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Enabling runtime deobfuscation 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Instantiating coremod class FMLCorePlugin 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Loaded coremod FMLCorePlugin 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Instantiating coremod class FMLForgePlugin 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Loaded coremod FMLForgePlugin 2014-01-04 15:57:34 [FINE] [ForgeModLoader] All fundamental core mods are successfully located 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Discovering coremods 2014-01-04 15:57:34 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.AccessTransformer 2014-01-04 15:57:34 [iNFO] [sTDOUT] Loaded 39 rules from AccessTransformer config file fml_at.cfg 2014-01-04 15:57:34 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.MarkerTransformer 2014-01-04 15:57:34 [FINEST] [ForgeModLoader] Registering transformer cpw.mods.fml.common.asm.transformers.SideTransformer 2014-01-04 15:57:34 [FINEST] [ForgeModLoader] Registering transformer net.minecraftforge.transformers.ForgeAccessTransformer 2014-01-04 15:57:34 [iNFO] [sTDOUT] Loaded 107 rules from AccessTransformer config file forge_at.cfg 2014-01-04 15:57:34 [FINEST] [ForgeModLoader] Registering transformer net.minecraftforge.transformers.EventTransformer 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Running coremod plugins 2014-01-04 15:57:34 [FINE] [ForgeModLoader] Running coremod plugin FMLCorePlugin 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.Block.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockBaseRailLogic.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockButton.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockCactus.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockChest.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockCocoa.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockComparator.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockCrops.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockDoor.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockFarmland.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockFire.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockFlower.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockFlowing.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockFluid.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockGrass.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockLadder.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockLeaves.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockLever.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockLog.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockMushroom.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockMycelium.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockNetherStalk.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockPane.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockPistonBase.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockPortal.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockPumpkin.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockRailBase.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockRedstoneWire.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockReed.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockSand.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockSapling.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockSkull.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockSnow.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockStem.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockTallGrass.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockTorch.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockTrapDoor.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockTripWireSource.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.block.BlockVine.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.ClientBrandRetriever.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.Minecraft.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.audio.SoundManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.entity.EntityOtherPlayerMP.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.entity.EntityPlayerSP.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.GuiControls.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.GuiCreateWorld.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.GuiIngame.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.GuiMainMenu.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.GuiSlot.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.achievement.GuiAchievements.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.inventory.GuiContainer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.gui.inventory.GuiContainerCreative.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.model.ModelBase.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.model.ModelBox.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.model.ModelRenderer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.model.PositionTextureVertex.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.model.TexturedQuad.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.multiplayer.ChunkProviderClient.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.multiplayer.GuiConnecting.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.multiplayer.NetClientHandler.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.multiplayer.PlayerControllerMP.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.multiplayer.WorldClient.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.particle.EffectRenderer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.particle.EntityDiggingFX.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.particle.EntityFireworkStarterFX.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.EntityRenderer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.ItemRenderer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.OpenGlHelper.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.RenderBlocks.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.RenderGlobal.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.Tessellator.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.WorldRenderer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.entity.RenderBiped.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.entity.RenderItem.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.entity.RenderManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.entity.RenderPlayer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.entity.RenderSnowMan.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.entity.RenderVillager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.entity.RendererLivingEntity.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.texture.Stitcher.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.texture.TextureAtlasSprite.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.texture.TextureMap.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.renderer.tileentity.TileEntityChestRenderer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.resources.LanguageManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.client.settings.GameSettings.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.command.CommandHandler.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.crash.CallableSuspiciousClasses.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.crash.CrashReport.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.crash.CrashReportCategory.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.creativetab.CreativeTabs.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.enchantment.Enchantment.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.enchantment.EnchantmentHelper.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.Entity.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.EntityList.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.EntityLiving.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.EntityLivingBase.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.EntityTracker.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.EntityTrackerEntry.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.ai.EntityAIAttackOnCollide.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.boss.EntityDragon.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.boss.EntityWither.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.boss.IBossDisplayData.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.item.EntityEnderPearl.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.item.EntityItem.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.item.EntityMinecart.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.item.EntityMinecartContainer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.item.EntityMinecartEmpty.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.item.EntityMinecartFurnace.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.item.EntityMinecartHopper.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.monster.EntityEnderman.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.monster.EntitySlime.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.passive.EntityMooshroom.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.passive.EntityOcelot.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.passive.EntitySheep.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.passive.EntityVillager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.player.EntityPlayer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.player.EntityPlayerMP.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.entity.player.InventoryPlayer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.ContainerEnchantment.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.ContainerFurnace.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.ContainerRepair.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.Slot.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.SlotArmor.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.SlotBrewingStandIngredient.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.SlotBrewingStandPotion.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.SlotCrafting.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.inventory.SlotFurnace.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.BehaviorDispenseArmor.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.EnumArmorMaterial.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.EnumRarity.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.EnumToolMaterial.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.Item.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemArmor.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemBlock.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemBow.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemBucket.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemBucketMilk.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemDye.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemEmptyMap.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemFlintAndSteel.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemHoe.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemInWorldManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemMap.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemSeedFood.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemSeeds.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemShears.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemStack.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.ItemTool.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.crafting.CraftingManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.crafting.FurnaceRecipes.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.item.crafting.RecipeFireworks.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.logging.LogAgent.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.nbt.CompressedStreamTools.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.nbt.NBTTagList.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.MemoryConnection.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.NetLoginHandler.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.NetServerHandler.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.NetworkListenThread.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.TcpConnection.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.packet.NetHandler.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.packet.Packet.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.packet.Packet1Login.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.packet.Packet51MapChunk.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.packet.Packet52MultiBlockChange.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.network.packet.Packet56MapChunks.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.potion.PotionEffect.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.MinecraftServer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.ServerListenThread.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.dedicated.DedicatedServer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.gui.StatsComponent.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.integrated.IntegratedServer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.integrated.IntegratedServerListenThread.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.management.PlayerInstance.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.server.management.ServerConfigurationManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.stats.StatFileWriter.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.stats.StatList.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.tileentity.TileEntity.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.tileentity.TileEntityBeacon.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.tileentity.TileEntityBrewingStand.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.tileentity.TileEntityFurnace.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.util.CryptManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.util.MovingObjectPosition.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.util.ResourceLocation.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.util.StringTranslate.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.util.WeightedRandomChestContent.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.village.VillageCollection.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.ChunkCache.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.Explosion.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.IBlockAccess.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.SpawnerAnimals.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.World.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.WorldProvider.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.WorldServer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.WorldType.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.biome.BiomeDecorator.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.biome.BiomeGenBase.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.biome.WorldChunkManager.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.chunk.Chunk.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.chunk.storage.AnvilChunkLoader.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.chunk.storage.AnvilSaveHandler.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.ChunkProviderEnd.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.ChunkProviderGenerate.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.ChunkProviderHell.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.ChunkProviderServer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.MapGenCaves.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.MapGenRavine.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenBigMushroom.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenBigTree.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenDeadBush.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenDungeons.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenForest.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenHugeTrees.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenMinable.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenShrub.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenSwamp.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenTaiga1.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenTaiga2.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenTallGrass.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.feature.WorldGenTrees.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.layer.GenLayer.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.layer.GenLayerBiome.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentMineshaftCorridor.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentScatteredFeatureDesertPyramid.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentScatteredFeatureJunglePyramid.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentStrongholdChestCorridor.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentStrongholdLibrary.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentStrongholdRoomCrossing.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentVillage.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentVillageHouse2.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.ComponentVillageStartPiece.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.MapGenStronghold.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.gen.structure.StructureVillagePieces.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.storage.MapData.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.storage.SaveHandler.binpatch 2014-01-04 15:57:35 [FINEST] [ForgeModLoader] Reading patch data from binpatch/client/net.minecraft.world.storage.WorldInfo.binpatch 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Read 235 binary patches 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Patch list : xk=[xk : xk => net.minecraft.item.ItemDye (true) size 7289] xi=[xi : xi => net.minecraft.item.ItemTool (true) size 2546] bka=[bka : bka => net.minecraft.client.resources.LanguageManager (true) size 3250] xm=[xm : xm => net.minecraft.item.ItemEmptyMap (true) size 1467] xv=[xv : xv => net.minecraft.item.ItemFlintAndSteel (true) size 1193] akg=[akg : akg => net.minecraft.world.gen.layer.GenLayerBiome (true) size 1122] ajj=[ajj : ajj => net.minecraft.world.gen.structure.ComponentVillage (true) size 5084] bjl=[bjl : bjl => net.minecraft.util.ResourceLocation (true) size 1521] wg=[wg : wg => net.minecraft.item.ItemArmor (true) size 4113] wh=[wh : wh => net.minecraft.item.BehaviorDispenseArmor (true) size 1467] wi=[wi : wi => net.minecraft.item.EnumArmorMaterial (true) size 1903] wo=[wo : wo => net.minecraft.item.ItemBow (true) size 3902] wq=[wq : wq => net.minecraft.item.ItemBucket (true) size 3600] ajf=[ajf : ajf => net.minecraft.world.gen.structure.ComponentVillageHouse2 (true) size 4020] ajg=[ajg : ajg => net.minecraft.world.gen.structure.ComponentVillageStartPiece (true) size 1150] wv=[wv : wv => net.minecraft.creativetab.CreativeTabs (true) size 5562] bis=[bis : bis => net.minecraft.client.renderer.tileentity.TileEntityChestRenderer (true) size 3431] vv=[vv : vv => net.minecraft.inventory.SlotArmor (true) size 1083] wd=[wd : wd => net.minecraft.inventory.Slot (true) size 2815] bih=[bih : bih => net.minecraft.client.renderer.texture.TextureMap (true) size 6282] wc=[wc : wc => net.minecraft.inventory.SlotCrafting (true) size 3028] aiv=[aiv : aiv => net.minecraft.world.gen.structure.StructureVillagePieces (true) size 5101] bii=[bii : bii => net.minecraft.client.renderer.texture.TextureAtlasSprite (true) size 6104] vl=[vl : vl => net.minecraft.inventory.ContainerEnchantment (true) size 4973] axj=[axj : axj => net.minecraft.client.gui.inventory.GuiContainerCreative (true) size 15123] ahz=[ahz : ahz => net.minecraft.world.gen.structure.ComponentStrongholdLibrary (true) size 4053] vf=[vf : vf => net.minecraft.inventory.SlotBrewingStandIngredient (true) size 739] vg=[vg : vg => net.minecraft.inventory.SlotBrewingStandPotion (true) size 1088] aie=[aie : aie => net.minecraft.world.gen.structure.ComponentStrongholdRoomCrossing (true) size 3826] vp=[vp : vp => net.minecraft.inventory.SlotFurnace (true) size 2057] vo=[vo : vo => net.minecraft.inventory.ContainerFurnace (true) size 2741] awv=[awv : awv => net.minecraft.client.gui.inventory.GuiContainer (true) size 13698] ahk=[ahk : ahk => net.minecraft.world.gen.structure.ComponentScatteredFeatureDesertPyramid (true) size 6113] uz=[uz : uz => net.minecraft.inventory.ContainerRepair (true) size 7549] ahl=[ahl : ahl => net.minecraft.world.gen.structure.ComponentScatteredFeatureJunglePyramid (true) size 5668] bls=[bls : bls => net.minecraft.stats.StatFileWriter (true) size 6363] blx=[blx : blx => net.minecraft.client.renderer.OpenGlHelper (true) size 1411] dm=[dm : dm => net.minecraft.network.packet.Packet52MultiBlockChange (true) size 2759] ahv=[ahv : ahv => net.minecraft.world.gen.structure.ComponentStrongholdChestCorridor (true) size 2938] blk=[blk : blk => net.minecraft.client.audio.SoundManager (true) size 11312] blq=[blq : blq => net.minecraft.client.gui.GuiMainMenu (true) size 13579] ahp=[ahp : ahp => net.minecraft.world.gen.structure.MapGenStronghold (true) size 3953] ex=[ex : ex => net.minecraft.network.packet.Packet (true) size 7765] b=[b : b => net.minecraft.crash.CrashReport (true) size 6438] ue=[ue : ue => net.minecraft.entity.player.EntityPlayer (true) size 37386] ey=[ey : ey => net.minecraft.network.packet.NetHandler (true) size 9724] bkz=[bkz : bkz => net.minecraft.server.integrated.IntegratedServerListenThread (true) size 2255] ur=[ur : ur => net.minecraft.entity.item.EntityEnderPearl (true) size 2224] m=[m : m => net.minecraft.crash.CrashReportCategory (true) size 4654] j=[j : j => net.minecraft.crash.CallableSuspiciousClasses (true) size 3261] ek=[ek : ek => net.minecraft.network.packet.Packet56MapChunks (true) size 4572] agh=[agh : agh => net.minecraft.world.gen.structure.ComponentMineshaftCorridor (true) size 5760] bkw=[bkw : bkw => net.minecraft.server.integrated.IntegratedServer (true) size 6663] ei=[ei : ei => net.minecraft.network.packet.Packet51MapChunk (true) size 4590] ua=[ua : ua => net.minecraft.entity.passive.EntityVillager (true) size 16725] eo=[eo : eo => net.minecraft.network.packet.Packet1Login (true) size 2313] uc=[uc : uc => net.minecraft.entity.player.InventoryPlayer (true) size 9477] aof=[aof : aof => net.minecraft.block.BlockFire (true) size 9397] tr=[tr : tr => net.minecraft.entity.monster.EntitySlime (true) size 5901] aok=[aok : aok => net.minecraft.block.BlockGrass (true) size 3310] tf=[tf : tf => net.minecraft.entity.monster.EntityEnderman (true) size 9441] bu=[bu : bu => net.minecraft.util.StringTranslate (true) size 3038] aoc=[aoc : aoc => net.minecraft.block.BlockFarmland (true) size 3785] anw=[anw : anw => net.minecraft.block.BlockDoor (true) size 6524] su=[su : su => net.minecraft.entity.item.EntityMinecartContainer (true) size 5210] ano=[ano : ano => net.minecraft.block.BlockCrops (true) size 4745] sv=[sv : sv => net.minecraft.entity.item.EntityMinecartFurnace (true) size 4071] ss=[ss : ss => net.minecraft.entity.item.EntityMinecart (true) size 20428] anm=[anm : anm => net.minecraft.block.BlockComparator (true) size 6119] sw=[sw : sw => net.minecraft.entity.item.EntityMinecartHopper (true) size 3379] sx=[sx : sx => net.minecraft.entity.item.EntityMinecartEmpty (true) size 1152] sl=[sl : sl => net.minecraft.entity.boss.EntityWither (true) size 11112] net.minecraft.client.ClientBrandRetriever=[net/minecraft/client/ClientBrandRetriever : net.minecraft.client.ClientBrandRetriever => net.minecraft.client.ClientBrandRetriever (true) size 593] anh=[anh : anh => net.minecraft.block.BlockChest (true) size 8957] anj=[anj : anj => net.minecraft.block.BlockCocoa (true) size 5240] sr=[sr : sr => net.minecraft.entity.item.EntityItem (true) size 7991] sf=[sf : sf => net.minecraft.entity.boss.IBossDisplayData (true) size 182] anb=[anb : anb => net.minecraft.block.BlockFlower (true) size 3559] anc=[anc : anc => net.minecraft.block.BlockButton (true) size 6964] sj=[sj : sj => net.minecraft.entity.boss.EntityDragon (true) size 12736] and=[and : and => net.minecraft.block.BlockCactus (true) size 4040] amw=[amw : amw => net.minecraft.block.BlockBaseRailLogic (true) size 5680] amv=[amv : amv => net.minecraft.block.BlockRailBase (true) size 4263] cm=[cm : cm => net.minecraft.network.MemoryConnection (true) size 3240] cn=[cn : cn => net.minecraft.network.TcpConnection (true) size 8307] ch=[ch : ch => net.minecraft.nbt.CompressedStreamTools (true) size 3184] rv=[rv : rv => net.minecraft.entity.passive.EntityMooshroom (true) size 2493] rw=[rw : rw => net.minecraft.entity.passive.EntityOcelot (true) size 6568] cf=[cf : cf => net.minecraft.nbt.NBTTagList (true) size 2942] ry=[ry : ry => net.minecraft.entity.passive.EntitySheep (true) size 7337] rl=[rl : rl => net.minecraft.village.VillageCollection (true) size 5751] alp=[alp : alp => net.minecraft.world.storage.WorldInfo (true) size 9344] aln=[aln : aln => net.minecraft.world.storage.SaveHandler (true) size 5737] alj=[alj : alj => net.minecraft.world.chunk.storage.AnvilSaveHandler (true) size 1234] alf=[alf : alf => net.minecraft.world.storage.MapData (true) size 5496] pz=[pz : pz => net.minecraft.entity.ai.EntityAIAttackOnCollide (true) size 2784] akn=[akn : akn => net.minecraft.world.gen.layer.GenLayer (true) size 3731] aa=[aa : aa => net.minecraft.command.CommandHandler (true) size 4742] bbl=[bbl : bbl => net.minecraft.client.model.ModelBase (true) size 1633] aqv=[aqv : aqv => net.minecraft.block.BlockPane (true) size 4245] aqw=[aqw : aqw => net.minecraft.block.Block (true) size 48515] ns=[ns : ns => net.minecraft.entity.EntityList (true) size 6113] aqs=[aqs : aqs => net.minecraft.block.BlockTallGrass (true) size 3823] net.minecraft.server.MinecraftServer=[net/minecraft/server/MinecraftServer : net.minecraft.server.MinecraftServer => net.minecraft.server.MinecraftServer (true) size 25485] oe=[oe : oe => net.minecraft.entity.EntityLivingBase (true) size 32349] arh=[arh : arh => net.minecraft.block.BlockTripWireSource (true) size 7037] of=[of : of => net.minecraft.entity.EntityLiving (true) size 19021] arg=[arg : arg => net.minecraft.block.BlockLog (true) size 2952] abq=[abq : abq => net.minecraft.world.Explosion (true) size 5891] arf=[arf : arf => net.minecraft.block.BlockTrapDoor (true) size 4620] ard=[ard : ard => net.minecraft.block.BlockTorch (true) size 4649] abv=[abv : abv => net.minecraft.world.World (true) size 62722] arc=[arc : arc => net.minecraft.block.BlockSnow (true) size 3497] bbp=[bbp : bbp => net.minecraft.client.model.TexturedQuad (true) size 1696] arj=[arj : arj => net.minecraft.block.BlockVine (true) size 6536] aru=[aru : aru => net.minecraft.tileentity.TileEntityBrewingStand (true) size 6074] aaa=[aaa : aaa => net.minecraft.item.crafting.FurnaceRecipes (true) size 4015] aae=[aae : aae => net.minecraft.item.crafting.CraftingManager (true) size 13153] art=[art : art => net.minecraft.tileentity.TileEntityBeacon (true) size 6177] aav=[aav : aav => net.minecraft.enchantment.EnchantmentHelper (true) size 7690] aat=[aat : aat => net.minecraft.enchantment.Enchantment (true) size 3893] asd=[asd : asd => net.minecraft.tileentity.TileEntityFurnace (true) size 6407] asq=[asq : asq => net.minecraft.block.BlockPistonBase (true) size 9440] asm=[asm : asm => net.minecraft.tileentity.TileEntity (true) size 6902] aop=[aop : aop => net.minecraft.block.BlockSand (true) size 2351] aoy=[aoy : aoy => net.minecraft.block.BlockLever (true) size 5734] aov=[aov : aov => net.minecraft.block.BlockLadder (true) size 3003] aow=[aow : aow => net.minecraft.block.BlockLeaves (true) size 7573] aoz=[aoz : aoz => net.minecraft.block.BlockFluid (true) size 9176] apa=[apa : apa => net.minecraft.block.BlockFlowing (true) size 5090] api=[api : api => net.minecraft.block.BlockNetherStalk (true) size 3530] aph=[aph : aph => net.minecraft.block.BlockMycelium (true) size 2731] apg=[apg : apg => net.minecraft.block.BlockMushroom (true) size 2377] bdv=[bdv : bdv => net.minecraft.client.particle.EntityFireworkStarterFX (true) size 6752] mj=[mj : mj => net.minecraft.util.WeightedRandomChestContent (true) size 2389] app=[app : app => net.minecraft.block.BlockPortal (true) size 5179] bcm=[bcm : bcm => net.minecraft.client.model.ModelBox (true) size 2433] apv=[apv : apv => net.minecraft.block.BlockPumpkin (true) size 3644] bcc=[bcc : bcc => net.minecraft.client.model.PositionTextureVertex (true) size 892] apy=[apy : apy => net.minecraft.block.BlockRedstoneWire (true) size 8522] bcz=[bcz : bcz => net.minecraft.client.multiplayer.PlayerControllerMP (true) size 8870] bcy=[bcy : bcy => net.minecraft.client.multiplayer.ChunkProviderClient (true) size 2949] aqb=[aqb : aqb => net.minecraft.block.BlockReed (true) size 3170] bda=[bda : bda => net.minecraft.client.multiplayer.WorldClient (true) size 9287] aqf=[aqf : aqf => net.minecraft.block.BlockSapling (true) size 3649] bct=[bct : bct => net.minecraft.client.multiplayer.NetClientHandler (true) size 36762] aqh=[aqh : aqh => net.minecraft.block.BlockSkull (true) size 6382] bcr=[bcr : bcr => net.minecraft.client.model.ModelRenderer (true) size 4781] ni=[ni : ni => net.minecraft.potion.PotionEffect (true) size 5033] bcv=[bcv : bcv => net.minecraft.client.multiplayer.GuiConnecting (true) size 3396] nm=[nm : nm => net.minecraft.entity.Entity (true) size 36813] aqn=[aqn : aqn => net.minecraft.block.BlockStem (true) size 6095] afn=[afn : afn => net.minecraft.world.gen.feature.WorldGenHugeTrees (true) size 4521] bfi=[bfi : bfi => net.minecraft.client.renderer.RenderGlobal (true) size 40467] jx=[jx : jx => net.minecraft.network.NetLoginHandler (true) size 6519] afp=[afp : afp => net.minecraft.world.gen.feature.WorldGenMinable (true) size 2544] jv=[jv : jv => net.minecraft.item.ItemInWorldManager (true) size 7971] afo=[afo : afo => net.minecraft.world.gen.feature.WorldGenDungeons (true) size 3585] jw=[jw : jw => net.minecraft.entity.EntityTrackerEntry (true) size 11005] afq=[afq : afq => net.minecraft.world.gen.feature.WorldGenTaiga1 (true) size 2467] ju=[ju : ju => net.minecraft.entity.player.EntityPlayerMP (true) size 19766] jr=[jr : jr => net.minecraft.world.WorldServer (true) size 20019] bfg=[bfg : bfg => net.minecraft.client.renderer.ItemRenderer (true) size 14073] aff=[aff : aff => net.minecraft.world.gen.feature.WorldGenShrub (true) size 1456] jp=[jp : jp => net.minecraft.server.management.PlayerInstance (true) size 4525] jq=[jq : jq => net.minecraft.world.gen.ChunkProviderServer (true) size 6996] auy=[auy : auy => net.minecraft.client.gui.GuiCreateWorld (true) size 8901] jl=[jl : jl => net.minecraft.entity.EntityTracker (true) size 5493] auv=[auv : auv => net.minecraft.client.gui.GuiControls (true) size 1967] bfo=[bfo : bfo => net.minecraft.client.renderer.RenderBlocks (true) size 122914] afk=[afk : afk => net.minecraft.world.gen.feature.WorldGenBigMushroom (true) size 2773] bfn=[bfn : bfn => net.minecraft.client.renderer.Tessellator (true) size 7118] kc=[kc : kc => net.minecraft.network.NetworkListenThread (true) size 2435] afw=[afw : afw => net.minecraft.world.gen.feature.WorldGenTaiga2 (true) size 2803] afx=[afx : afx => net.minecraft.world.gen.feature.WorldGenSwamp (true) size 3186] afy=[afy : afy => net.minecraft.world.gen.feature.WorldGenTallGrass (true) size 1109] avg=[avg : avg => net.minecraft.client.gui.GuiIngame (true) size 19967] afz=[afz : afz => net.minecraft.world.gen.feature.WorldGenTrees (true) size 4288] jz=[jz : jz => net.minecraft.network.NetServerHandler (true) size 23091] aeo=[aeo : aeo => net.minecraft.world.gen.ChunkProviderHell (true) size 12943] ael=[ael : ael => net.minecraft.world.gen.MapGenRavine (true) size 5323] awd=[awd : awd => net.minecraft.client.gui.GuiSlot (true) size 7189] kz=[kz : kz => net.minecraft.stats.StatList (true) size 6201] aes=[aes : aes => net.minecraft.world.gen.ChunkProviderGenerate (true) size 13524] bee=[bee : bee => net.minecraft.client.particle.EffectRenderer (true) size 5644] aep=[aep : aep => net.minecraft.world.gen.MapGenCaves (true) size 5736] bep=[bep : bep => net.minecraft.client.particle.EntityDiggingFX (true) size 2881] aed=[aed : aed => net.minecraft.world.chunk.storage.AnvilChunkLoader (true) size 10370] aeh=[aeh : aeh => net.minecraft.world.WorldProvider (true) size 9582] bex=[bex : bex => net.minecraft.client.renderer.WorldRenderer (true) size 5157] awn=[awn : awn => net.minecraft.client.gui.achievement.GuiAchievements (true) size 9923] beu=[beu : beu => net.minecraft.client.entity.EntityPlayerSP (true) size 11993] bev=[bev : bev => net.minecraft.client.entity.EntityOtherPlayerMP (true) size 3666] afb=[afb : afb => net.minecraft.world.gen.feature.WorldGenDeadBush (true) size 1040] lf=[lf : lf => net.minecraft.util.CryptManager (true) size 5162] aev=[aev : aev => net.minecraft.world.gen.feature.WorldGenBigTree (true) size 7224] bfb=[bfb : bfb => net.minecraft.client.renderer.EntityRenderer (true) size 28498] aew=[aew : aew => net.minecraft.world.gen.feature.WorldGenForest (true) size 2541] aet=[aet : aet => net.minecraft.world.gen.ChunkProviderEnd (true) size 8482] lb=[lb : lb => net.minecraft.logging.LogAgent (true) size 2730] bhg=[bhg : bhg => net.minecraft.client.renderer.entity.RenderPlayer (true) size 13450] zg=[zg : zg => net.minecraft.item.ItemBlock (true) size 3855] adq=[adq : adq => net.minecraft.world.chunk.Chunk (true) size 21412] bhl=[bhl : bhl => net.minecraft.client.renderer.entity.RenderSnowMan (true) size 2777] bhr=[bhr : bhr => net.minecraft.client.renderer.entity.RenderVillager (true) size 2882] asx=[asx : asx => net.minecraft.util.MovingObjectPosition (true) size 1081] hm=[hm : hm => net.minecraft.server.management.ServerConfigurationManager (true) size 19730] zy=[zy : zy => net.minecraft.item.crafting.RecipeFireworks (true) size 3773] bid=[bid : bid => net.minecraft.client.renderer.texture.Stitcher (true) size 4303] yg=[yg : yg => net.minecraft.item.ItemMap (true) size 6143] acp=[acp : acp => net.minecraft.world.biome.BiomeGenBase (true) size 8626] yh=[yh : yh => net.minecraft.item.ItemBucketMilk (true) size 1145] ir=[ir : ir => net.minecraft.server.dedicated.DedicatedServer (true) size 9968] yc=[yc : yc => net.minecraft.item.EnumToolMaterial (true) size 2100] yd=[yd : yd => net.minecraft.item.ItemStack (true) size 14629] ya=[ya : ya => net.minecraft.item.ItemHoe (true) size 2422] ack=[ack : ack => net.minecraft.world.ChunkCache (true) size 6497] bgi=[bgi : bgi => net.minecraft.client.renderer.entity.RenderManager (true) size 9404] yb=[yb : yb => net.minecraft.item.Item (true) size 30833] ix=[ix : ix => net.minecraft.server.ServerListenThread (true) size 3680] ats=[ats : ats => net.minecraft.client.Minecraft (true) size 38348] ach=[ach : ach => net.minecraft.world.SpawnerAnimals (true) size 7002] acf=[acf : acf => net.minecraft.world.WorldType (true) size 5531] bgt=[bgt : bgt => net.minecraft.client.renderer.entity.RenderItem (true) size 11792] ace=[ace : ace => net.minecraft.world.IBlockAccess (true) size 752] bgr=[bgr : bgr => net.minecraft.client.renderer.entity.RenderBiped (true) size 9300] yw=[yw : yw => net.minecraft.item.ItemShears (true) size 3596] yv=[yv : yv => net.minecraft.item.ItemSeeds (true) size 2008] yu=[yu : yu => net.minecraft.item.ItemSeedFood (true) size 1895] jd=[jd : jd => net.minecraft.server.gui.StatsComponent (false) size 4603] bgy=[bgy : bgy => net.minecraft.client.renderer.entity.RendererLivingEntity (true) size 11605] yp=[yp : yp => net.minecraft.item.EnumRarity (true) size 1042] act=[act : act => net.minecraft.world.biome.BiomeDecorator (true) size 9242] acu=[acu : acu => net.minecraft.world.biome.WorldChunkManager (true) size 5290] aui=[aui : aui => net.minecraft.client.settings.GameSettings (true) size 15902] 2014-01-04 15:57:35 [iNFO] [ForgeModLoader] Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.ClientBrandRetriever (input size 303), found 1 patch 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.ClientBrandRetriever (new size 685) 2014-01-04 15:57:35 [iNFO] [ForgeModLoader] Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Coremod plugin FMLCorePlugin run successfully 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Running coremod plugin FMLForgePlugin 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Coremod plugin FMLForgePlugin run successfully 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Validating minecraft 2014-01-04 15:57:35 [FINE] [ForgeModLoader] Minecraft validated, launching... 2014-01-04 15:57:35 [iNFO] [ForgeModLoader] Launching wrapped minecraft 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.Minecraft (input size 35287), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.Minecraft (new size 41571) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.World (input size 45378), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.World (new size 65885) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.IBlockAccess (input size 367), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.IBlockAccess (new size 743) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.multiplayer.WorldClient (input size 7164), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.multiplayer.WorldClient (new size 9616) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.GuiIngame (input size 16614), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.GuiIngame (new size 20804) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.GuiIngame (input size 16614), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.GuiIngame (new size 20804) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.GuiMainMenu (input size 12121), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.GuiMainMenu (new size 14850) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.multiplayer.GuiConnecting (input size 2649), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.multiplayer.GuiConnecting (new size 3652) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.EntityLivingBase (input size 26398), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.EntityLivingBase (new size 33378) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.Entity (input size 26866), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.Entity (new size 38601) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.entity.EntityPlayerSP (input size 9159), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.entity.EntityPlayerSP (new size 12310) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.player.EntityPlayer (input size 25637), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.player.EntityPlayer (new size 38289) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.inventory.GuiContainer (input size 11952), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.inventory.GuiContainer (new size 14207) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.util.ResourceLocation (input size 1404), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.util.ResourceLocation (new size 1749) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.MinecraftServer (input size 18655), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.MinecraftServer (new size 27332) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.WorldServer (input size 15048), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.WorldServer (new size 20910) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.packet.Packet (input size 7307), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.packet.Packet (new size 8741) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.logging.LogAgent (input size 2400), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.logging.LogAgent (new size 3379) 2014-01-04 15:57:36 [iNFO] [Minecraft-Client] Setting user: Draco18s 2014-01-04 15:57:36 [iNFO] [Minecraft-Client] (Session ID is token:9cfa3fcb3642431fba302f4115002fe0:5ee15e88b5864ad09342ae14418420a8) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.stats.StatList (input size 5774), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.stats.StatList (new size 6557) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.Block (input size 30308), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.Block (new size 49789) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.item.EntityItem (input size 5615), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.item.EntityItem (new size 8318) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.creativetab.CreativeTabs (input size 3544), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.creativetab.CreativeTabs (new size 5751) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockGrass (input size 2419), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockGrass (new size 3500) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockSapling (input size 2895), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockSapling (new size 3914) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockFlower (input size 1521), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockFlower (new size 3588) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockFlowing (input size 4256), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockFlowing (new size 5156) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockFluid (input size 7019), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockFluid (new size 9810) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockSand (input size 1643), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockSand (new size 2370) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockLog (input size 2019), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockLog (new size 3135) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockLeaves (input size 5721), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockLeaves (new size 8191) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.tileentity.TileEntity (input size 4609), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.tileentity.TileEntity (new size 7518) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockRailBase (input size 2404), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockRailBase (new size 4363) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockPistonBase (input size 7463), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockPistonBase (new size 9704) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockTallGrass (input size 2180), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockTallGrass (new size 3946) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockMushroom (input size 1825), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockMushroom (new size 2645) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockTorch (input size 3338), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockTorch (new size 4781) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockFire (input size 6323), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockFire (new size 9610) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockChest (input size 7113), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockChest (new size 9237) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockRedstoneWire (input size 6640), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockRedstoneWire (new size 8844) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockCrops (input size 3092), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockCrops (new size 4989) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockFarmland (input size 2760), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockFarmland (new size 4018) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.tileentity.TileEntityFurnace (input size 5347), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.tileentity.TileEntityFurnace (new size 6635) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockDoor (input size 5421), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockDoor (new size 7081) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockLadder (input size 1753), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockLadder (new size 3071) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockLever (input size 4434), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockLever (new size 5947) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockButton (input size 4976), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockButton (new size 7195) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockSnow (input size 2463), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockSnow (new size 3572) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockCactus (input size 2379), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockCactus (new size 4171) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockReed (input size 1795), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockReed (new size 3227) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockPumpkin (input size 2970), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockPumpkin (new size 3783) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.EntityLiving (input size 16004), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.EntityLiving (new size 19689) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockPortal (input size 4091), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockPortal (new size 5427) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockTrapDoor (input size 2843), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockTrapDoor (new size 4791) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockPane (input size 2604), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockPane (new size 4351) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockStem (input size 3890), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockStem (new size 6288) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockVine (input size 5081), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockVine (new size 6985) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockMycelium (input size 1959), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockMycelium (new size 2864) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockNetherStalk (input size 1999), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockNetherStalk (new size 3680) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.tileentity.TileEntityBrewingStand (input size 4856), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.tileentity.TileEntityBrewingStand (new size 6439) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.Item (input size 22269), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.Item (new size 31922) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockCocoa (input size 3260), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockCocoa (new size 5439) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockTripWireSource (input size 5544), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockTripWireSource (new size 7403) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.tileentity.TileEntityBeacon (input size 4865), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.tileentity.TileEntityBeacon (new size 6306) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockSkull (input size 4805), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockSkull (new size 6663) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.boss.EntityWither (input size 9009), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.boss.EntityWither (new size 11369) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.boss.IBossDisplayData (input size 143), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.boss.IBossDisplayData (new size 175) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockComparator (input size 4213), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockComparator (new size 6288) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemTool (input size 1663), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemTool (new size 2748) 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.EnumToolMaterial (input size 1646), found 1 patch 2014-01-04 15:57:36 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.EnumToolMaterial (new size 2216) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemBlock (input size 2481), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemBlock (new size 4088) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemFlintAndSteel (input size 952), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemFlintAndSteel (new size 1283) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemBow (input size 2604), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemBow (new size 4035) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.nbt.NBTTagList (input size 2458), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.nbt.NBTTagList (new size 3235) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemHoe (input size 1212), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemHoe (new size 2467) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemSeeds (input size 679), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemSeeds (new size 2023) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemArmor (input size 3505), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemArmor (new size 4454) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.BehaviorDispenseArmor (input size 1099), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.BehaviorDispenseArmor (new size 1521) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.EnumArmorMaterial (input size 1536), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.EnumArmorMaterial (new size 2073) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemBucket (input size 2578), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemBucket (new size 3684) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.item.EntityMinecart (input size 14693), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.item.EntityMinecart (new size 21351) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemBucketMilk (input size 828), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemBucketMilk (new size 1153) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemDye (input size 5221), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemDye (new size 7521) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.player.EntityPlayer (input size 25637), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.player.EntityPlayer (new size 38289) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemMap (input size 5645), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemMap (new size 6631) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.storage.MapData (input size 4692), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.storage.MapData (new size 6010) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemShears (input size 1037), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemShears (new size 3599) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.item.EntityEnderPearl (input size 1241), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.item.EntityEnderPearl (new size 2241) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemSeedFood (input size 625), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemSeedFood (new size 1911) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemEmptyMap (input size 1301), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemEmptyMap (new size 1643) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.util.StringTranslate (input size 3081), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.util.StringTranslate (new size 3941) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.crafting.CraftingManager (input size 12618), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.crafting.CraftingManager (new size 13567) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemStack (input size 11944), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemStack (new size 15716) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.crafting.RecipeFireworks (input size 3419), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.crafting.RecipeFireworks (new size 3972) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.crafting.FurnaceRecipes (input size 2402), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.crafting.FurnaceRecipes (new size 4143) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.settings.GameSettings (input size 15787), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.settings.GameSettings (new size 17121) 2014-01-04 15:57:37 [iNFO] [Minecraft-Client] LWJGL Version: 2.9.0 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.Block (input size 30308), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.Block (new size 49789) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.OpenGlHelper (input size 1054), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.OpenGlHelper (new size 1587) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.entity.RenderItem (input size 8123), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.entity.RenderItem (new size 12009) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.RenderBlocks (input size 115770), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.RenderBlocks (new size 128069) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.biome.WorldChunkManager (input size 3382), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.biome.WorldChunkManager (new size 5661) 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.resources.LanguageManager (input size 2874), found 1 patch 2014-01-04 15:57:37 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.resources.LanguageManager (new size 3867) 2014-01-04 15:57:38 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.audio.SoundManager (input size 9197), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.audio.SoundManager (new size 12543) 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.integrated.IntegratedServer (input size 5418), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.integrated.IntegratedServer (new size 7485) 2014-01-04 15:57:38 [iNFO] [sTDOUT] 2014-01-04 15:57:38 [iNFO] [sTDOUT] Starting up SoundSystem... 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.Tessellator (input size 6041), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.Tessellator (new size 7856) 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.dedicated.DedicatedServer (input size 9381), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.dedicated.DedicatedServer (new size 11602) 2014-01-04 15:57:38 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2014-01-04 15:57:38 [iNFO] [sTDOUT] MinecraftForge v9.10.1.871 Initialized 2014-01-04 15:57:38 [iNFO] [ForgeModLoader] MinecraftForge v9.10.1.871 Initialized 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.monster.EntityEnderman (input size 7850), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.monster.EntityEnderman (new size 9717) 2014-01-04 15:57:38 [iNFO] [sTDOUT] Replaced 101 ore recipies 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.crash.CrashReport (input size 6379), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.crash.CrashReport (new size 7918) 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.crash.CrashReportCategory (input size 4185), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.crash.CrashReportCategory (new size 5656) 2014-01-04 15:57:38 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2014-01-04 15:57:38 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.crash.CallableSuspiciousClasses (input size 3241), found 1 patch 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.crash.CallableSuspiciousClasses (new size 3877) 2014-01-04 15:57:38 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2014-01-04 15:57:38 [iNFO] [sTDOUT] OpenAL initialized. 2014-01-04 15:57:38 [iNFO] [ForgeModLoader] Reading custom logging properties from Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\instances\162\minecraft\config\logging.properties 2014-01-04 15:57:38 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Building injected Mod Containers [cpw.mods.fml.common.FMLDummyContainer, net.minecraftforge.common.ForgeDummyContainer] 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Attempting to load mods contained in the minecraft jar file and associated classes 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\net\minecraftforge\minecraftforge\9.10.1.871\minecraftforge-9.10.1.871.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\net\minecraft\launchwrapper\1.3\launchwrapper-1.3.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\org\ow2\asm\asm-all\4.1\asm-all-4.1.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\org\scala-lang\scala-library\2.10.2\scala-library-2.10.2.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\org\scala-lang\scala-compiler\2.10.2\scala-compiler-2.10.2.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\lzma\lzma\0.0.1\lzma-0.0.1.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\net\sf\jopt-simple\jopt-simple\4.5\jopt-simple-4.5.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\argo\argo\2.25_fixed\argo-2.25_fixed.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\org\bouncycastle\bcprov-jdk15on\1.47\bcprov-jdk15on-1.47.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\com\google\guava\guava\14.0\guava-14.0.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\com\google\code\gson\gson\2.2.2\gson-2.2.2.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\org\lwjgl\lwjgl\lwjgl\2.9.0\lwjgl-2.9.0.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.0\lwjgl_util-2.9.0.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a minecraft related file at Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\versions\1.6.2\1.6.2.jar, examining for mod candidates 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Minecraft jar mods loaded successfully 2014-01-04 15:57:38 [iNFO] [ForgeModLoader] Searching Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\instances\162\minecraft\mods for mods 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Found a candidate zip or jar file Maps-Forge871.zip 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Examining file minecraftforge-9.10.1.871.jar for potential mods 2014-01-04 15:57:38 [FINE] [ForgeModLoader] The mod container minecraftforge-9.10.1.871.jar appears to be missing an mcmod.info file 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Examining file launchwrapper-1.3.jar for potential mods 2014-01-04 15:57:38 [FINE] [ForgeModLoader] The mod container launchwrapper-1.3.jar appears to be missing an mcmod.info file 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Examining file asm-all-4.1.jar for potential mods 2014-01-04 15:57:38 [FINE] [ForgeModLoader] The mod container asm-all-4.1.jar appears to be missing an mcmod.info file 2014-01-04 15:57:38 [FINE] [ForgeModLoader] Examining file scala-library-2.10.2.jar for potential mods 2014-01-04 15:57:38 [FINE] [ForgeModLoader] The mod container scala-library-2.10.2.jar appears to be missing an mcmod.info file 2014-01-04 15:57:38 [iNFO] [sTDOUT] 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file scala-compiler-2.10.2.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container scala-compiler-2.10.2.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file lzma-0.0.1.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container lzma-0.0.1.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file jopt-simple-4.5.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container jopt-simple-4.5.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file codecjorbis-20101023.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container codecjorbis-20101023.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file codecwav-20101023.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container codecwav-20101023.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file libraryjavasound-20101123.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container libraryjavasound-20101123.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file librarylwjglopenal-20100824.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container librarylwjglopenal-20100824.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file soundsystem-20120107.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container soundsystem-20120107.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file argo-2.25_fixed.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container argo-2.25_fixed.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file bcprov-jdk15on-1.47.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container bcprov-jdk15on-1.47.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file guava-14.0.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container guava-14.0.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file commons-lang3-3.1.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container commons-lang3-3.1.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file commons-io-2.4.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container commons-io-2.4.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file jinput-2.0.5.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container jinput-2.0.5.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file jutils-1.0.0.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container jutils-1.0.0.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file gson-2.2.2.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container gson-2.2.2.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file lwjgl-2.9.0.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container lwjgl-2.9.0.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file lwjgl_util-2.9.0.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container lwjgl_util-2.9.0.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file 1.6.2.jar for potential mods 2014-01-04 15:57:39 [FINE] [ForgeModLoader] The mod container 1.6.2.jar appears to be missing an mcmod.info file 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Examining file Maps-Forge871.zip for potential mods 2014-01-04 15:57:39 [FINER] [ForgeModLoader] Located mcmod.info file in file Maps-Forge871.zip 2014-01-04 15:57:39 [FINE] [ForgeModLoader] Identified an FMLMod type mod draco18s.micromods.maps.MapsBase 2014-01-04 15:57:39 [FINEST] [specialized Maps] Parsed dependency info : [] [] [] 2014-01-04 15:57:40 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2014-01-04 15:57:40 [FINER] [ForgeModLoader] Received a system property request '' 2014-01-04 15:57:40 [FINER] [ForgeModLoader] System property request managing the state of 0 mods 2014-01-04 15:57:40 [FINE] [ForgeModLoader] After merging, found state information for 0 mods 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Reloading logging properties from Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\instances\162\minecraft\config\logging.properties 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Reloaded logging properties 2014-01-04 15:57:40 [FINE] [mcp] Mod Logging channel mcp configured at default level. 2014-01-04 15:57:40 [iNFO] [mcp] Activating mod mcp 2014-01-04 15:57:40 [FINE] [FML] Mod Logging channel FML configured at default level. 2014-01-04 15:57:40 [iNFO] [FML] Activating mod FML 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.storage.SaveHandler (input size 4811), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.storage.SaveHandler (new size 6395) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.storage.WorldInfo (input size 7216), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.storage.WorldInfo (new size 9831) 2014-01-04 15:57:40 [FINE] [Forge] Mod Logging channel Forge configured at default level. 2014-01-04 15:57:40 [iNFO] [Forge] Activating mod Forge 2014-01-04 15:57:40 [FINE] [specialized Maps] Enabling mod Specialized Maps 2014-01-04 15:57:40 [FINE] [specialized Maps] Mod Logging channel Specialized Maps configured at default level. 2014-01-04 15:57:40 [iNFO] [specialized Maps] Activating mod Specialized Maps 2014-01-04 15:57:40 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well 2014-01-04 15:57:40 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well 2014-01-04 15:57:40 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:More Maps 2014-01-04 15:57:40 [iNFO] [sTDOUT] 2014-01-04 15:57:40 [iNFO] [sTDOUT] SoundSystem shutting down... 2014-01-04 15:57:40 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2014-01-04 15:57:40 [iNFO] [sTDOUT] 2014-01-04 15:57:40 [FINER] [ForgeModLoader] Verifying mod requirements are satisfied 2014-01-04 15:57:40 [iNFO] [sTDOUT] 2014-01-04 15:57:40 [iNFO] [sTDOUT] Starting up SoundSystem... 2014-01-04 15:57:40 [FINER] [ForgeModLoader] All mod requirements are satisfied 2014-01-04 15:57:40 [FINER] [ForgeModLoader] Sorting mods into an ordered list 2014-01-04 15:57:40 [FINER] [ForgeModLoader] Mod sorting completed successfully 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Mod sorting data 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Specialized Maps(More Maps:2.0.0): Maps-Forge871.zip () 2014-01-04 15:57:40 [FINEST] [mcp] Sending event FMLConstructionEvent to mod mcp 2014-01-04 15:57:40 [FINEST] [mcp] Sent event FMLConstructionEvent to mod mcp 2014-01-04 15:57:40 [FINEST] [FML] Sending event FMLConstructionEvent to mod FML 2014-01-04 15:57:40 [FINEST] [FML] Sent event FMLConstructionEvent to mod FML 2014-01-04 15:57:40 [FINEST] [Forge] Sending event FMLConstructionEvent to mod Forge 2014-01-04 15:57:40 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.player.EntityPlayerMP (input size 16046), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.player.EntityPlayerMP (new size 20747) 2014-01-04 15:57:40 [FINEST] [ForgeModLoader] Testing mod Forge to verify it accepts its own version in a remote connection 2014-01-04 15:57:40 [FINEST] [ForgeModLoader] The mod Forge accepts its own version (9.10.1.871) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.packet.NetHandler (input size 4778), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.packet.NetHandler (new size 9784) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.NetServerHandler (input size 19321), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.NetServerHandler (new size 24530) 2014-01-04 15:57:40 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2014-01-04 15:57:40 [FINEST] [Forge] Sent event FMLConstructionEvent to mod Forge 2014-01-04 15:57:40 [FINEST] [specialized Maps] Sending event FMLConstructionEvent to mod Specialized Maps 2014-01-04 15:57:40 [FINEST] [ForgeModLoader] Testing mod Specialized Maps to verify it accepts its own version in a remote connection 2014-01-04 15:57:40 [FINEST] [ForgeModLoader] The mod Specialized Maps accepts its own version (2.0.0) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Attempting to inject @SidedProxy classes into Specialized Maps 2014-01-04 15:57:40 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2014-01-04 15:57:40 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2014-01-04 15:57:40 [FINEST] [specialized Maps] Sent event FMLConstructionEvent to mod Specialized Maps 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Mod signature data 2014-01-04 15:57:40 [FINE] [ForgeModLoader] mcp(Minecraft Coder Pack:8.04): minecraft.jar (NO VALID CERTIFICATE FOUND) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] FML(Forge Mod Loader:6.2.62.871): minecraftforge-9.10.1.871.jar (e3c3d50c7c986df74c645c0ac54639741c90a557) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Forge(Minecraft Forge:9.10.1.871): minecraftforge-9.10.1.871.jar (NO VALID CERTIFICATE FOUND) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Specialized Maps(More Maps:2.0.0): Maps-Forge871.zip (NO VALID CERTIFICATE FOUND) 2014-01-04 15:57:40 [FINEST] [mcp] Sending event FMLPreInitializationEvent to mod mcp 2014-01-04 15:57:40 [FINEST] [mcp] Sent event FMLPreInitializationEvent to mod mcp 2014-01-04 15:57:40 [FINEST] [FML] Sending event FMLPreInitializationEvent to mod FML 2014-01-04 15:57:40 [FINEST] [FML] Sent event FMLPreInitializationEvent to mod FML 2014-01-04 15:57:40 [FINEST] [Forge] Sending event FMLPreInitializationEvent to mod Forge 2014-01-04 15:57:40 [iNFO] [sTDOUT] OpenAL initialized. 2014-01-04 15:57:40 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2014-01-04 15:57:40 [FINEST] [Forge] Sent event FMLPreInitializationEvent to mod Forge 2014-01-04 15:57:40 [FINEST] [specialized Maps] Sending event FMLPreInitializationEvent to mod Specialized Maps 2014-01-04 15:57:40 [FINE] [fml.ItemTracker] Adding item draco18s.micromods.maps.items.MapEmptyOreDensity(4099) owned by Specialized Maps 2014-01-04 15:57:40 [FINE] [fml.ItemTracker] Adding item draco18s.micromods.maps.items.MapOreDensity(4100) owned by Specialized Maps 2014-01-04 15:57:40 [FINE] [fml.ItemTracker] Adding item draco18s.micromods.maps.items.MapEmptyWalkable(4101) owned by Specialized Maps 2014-01-04 15:57:40 [FINE] [fml.ItemTracker] Adding item draco18s.micromods.maps.items.MapWalkable(4102) owned by Specialized Maps 2014-01-04 15:57:40 [FINE] [fml.ItemTracker] Adding item draco18s.micromods.maps.items.MapEmptyRadar(4103) owned by Specialized Maps 2014-01-04 15:57:40 [FINE] [fml.ItemTracker] Adding item draco18s.micromods.maps.items.MapRadar(4104) owned by Specialized Maps 2014-01-04 15:57:40 [FINEST] [specialized Maps] Sent event FMLPreInitializationEvent to mod Specialized Maps 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.entity.RenderManager (input size 8199), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.entity.RenderManager (new size 9825) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.model.ModelBase (input size 1205), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.model.ModelBase (new size 1799) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.entity.RendererLivingEntity (input size 8451), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.entity.RendererLivingEntity (new size 11844) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.model.ModelRenderer (input size 3799), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.model.ModelRenderer (new size 4939) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.model.ModelBox (input size 1836), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.model.ModelBox (new size 2719) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.model.PositionTextureVertex (input size 565), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.model.PositionTextureVertex (new size 914) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.model.TexturedQuad (input size 1246), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.model.TexturedQuad (new size 1749) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.passive.EntitySheep (input size 5833), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.passive.EntitySheep (new size 7520) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.passive.EntityMooshroom (input size 1667), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.passive.EntityMooshroom (new size 2521) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.passive.EntityOcelot (input size 5673), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.passive.EntityOcelot (new size 6765) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.entity.RenderSnowMan (input size 1446), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.entity.RenderSnowMan (new size 2807) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.entity.RenderBiped (input size 6055), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.entity.RenderBiped (new size 9691) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.monster.EntitySlime (input size 5159), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.monster.EntitySlime (new size 6093) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.entity.RenderPlayer (input size 8845), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.entity.RenderPlayer (new size 13765) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.passive.EntityVillager (input size 14888), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.passive.EntityVillager (new size 17345) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.entity.RenderVillager (input size 1999), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.entity.RenderVillager (new size 3103) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.boss.EntityDragon (input size 10939), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.boss.EntityDragon (new size 13160) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.ItemRenderer (input size 10440), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.ItemRenderer (new size 14324) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.EntityRenderer (input size 25399), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.EntityRenderer (new size 29186) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.stats.StatFileWriter (input size 5475), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.stats.StatFileWriter (new size 7165) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.RenderGlobal (input size 35240), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.RenderGlobal (new size 42533) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.particle.EntityDiggingFX (input size 1874), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.particle.EntityDiggingFX (new size 3018) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.texture.TextureMap (input size 5347), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.texture.TextureMap (new size 7116) 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.texture.TextureAtlasSprite (input size 5006), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.texture.TextureAtlasSprite (new size 6723) 2014-01-04 15:57:40 [iNFO] [sTDOUT] 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.texture.Stitcher (input size 3752), found 1 patch 2014-01-04 15:57:40 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.texture.Stitcher (new size 4847) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.particle.EffectRenderer (input size 4264), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.particle.EffectRenderer (new size 5858) 2014-01-04 15:57:41 [FINEST] [mcp] Sending event FMLInitializationEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [mcp] Sent event FMLInitializationEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [FML] Sending event FMLInitializationEvent to mod FML 2014-01-04 15:57:41 [FINEST] [FML] Sent event FMLInitializationEvent to mod FML 2014-01-04 15:57:41 [FINEST] [Forge] Sending event FMLInitializationEvent to mod Forge 2014-01-04 15:57:41 [FINEST] [Forge] Sent event FMLInitializationEvent to mod Forge 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sending event FMLInitializationEvent to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sent event FMLInitializationEvent to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod mcp 2014-01-04 15:57:41 [FINEST] [mcp] Sending event IMCEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [mcp] Sent event IMCEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod FML 2014-01-04 15:57:41 [FINEST] [FML] Sending event IMCEvent to mod FML 2014-01-04 15:57:41 [FINEST] [FML] Sent event IMCEvent to mod FML 2014-01-04 15:57:41 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod Forge 2014-01-04 15:57:41 [FINEST] [Forge] Sending event IMCEvent to mod Forge 2014-01-04 15:57:41 [FINEST] [Forge] Sent event IMCEvent to mod Forge 2014-01-04 15:57:41 [FINEST] [ForgeModLoader] Attempting to deliver 0 IMC messages to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sending event IMCEvent to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sent event IMCEvent to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [mcp] Sending event FMLPostInitializationEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [mcp] Sent event FMLPostInitializationEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [FML] Sending event FMLPostInitializationEvent to mod FML 2014-01-04 15:57:41 [FINEST] [FML] Sent event FMLPostInitializationEvent to mod FML 2014-01-04 15:57:41 [FINEST] [Forge] Sending event FMLPostInitializationEvent to mod Forge 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.biome.BiomeGenBase (input size 6248), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.biome.BiomeGenBase (new size 8880) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenBigTree (input size 5987), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenBigTree (new size 7940) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenTrees (input size 2816), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenTrees (new size 4364) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenTallGrass (input size 782), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenTallGrass (new size 1124) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.biome.BiomeDecorator (input size 5564), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.biome.BiomeDecorator (new size 9450) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.biome.BiomeDecorator (input size 5564), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.biome.BiomeDecorator (new size 9450) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenForest (input size 1421), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenForest (new size 2567) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenSwamp (input size 2197), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenSwamp (new size 3203) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenMinable (input size 1534), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenMinable (new size 2563) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenBigMushroom (input size 1924), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenBigMushroom (new size 2814) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenTaiga1 (input size 1541), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenTaiga1 (new size 2502) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenTaiga2 (input size 1629), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenTaiga2 (new size 2822) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenShrub (input size 990), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenShrub (new size 1506) 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenHugeTrees (input size 2993), found 1 patch 2014-01-04 15:57:41 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenHugeTrees (new size 4592) 2014-01-04 15:57:41 [FINEST] [Forge] Sent event FMLPostInitializationEvent to mod Forge 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sending event FMLPostInitializationEvent to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sent event FMLPostInitializationEvent to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [mcp] Sending event FMLLoadCompleteEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [mcp] Sent event FMLLoadCompleteEvent to mod mcp 2014-01-04 15:57:41 [FINEST] [FML] Sending event FMLLoadCompleteEvent to mod FML 2014-01-04 15:57:41 [FINEST] [FML] Sent event FMLLoadCompleteEvent to mod FML 2014-01-04 15:57:41 [FINEST] [Forge] Sending event FMLLoadCompleteEvent to mod Forge 2014-01-04 15:57:41 [FINEST] [Forge] Sent event FMLLoadCompleteEvent to mod Forge 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sending event FMLLoadCompleteEvent to mod Specialized Maps 2014-01-04 15:57:41 [FINEST] [specialized Maps] Sent event FMLLoadCompleteEvent to mod Specialized Maps 2014-01-04 15:57:41 [iNFO] [ForgeModLoader] Forge Mod Loader has successfully loaded 4 mods 2014-01-04 15:57:41 [WARNING] [Forge Mod Loader] Mod Forge Mod Loader is missing a pack.mcmeta file, things may not work well 2014-01-04 15:57:41 [WARNING] [Minecraft Forge] Mod Minecraft Forge is missing a pack.mcmeta file, things may not work well 2014-01-04 15:57:41 [iNFO] [Minecraft-Client] Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:More Maps 2014-01-04 15:57:41 [iNFO] [sTDOUT] 2014-01-04 15:57:41 [iNFO] [sTDOUT] SoundSystem shutting down... 2014-01-04 15:57:41 [iNFO] [sTDOUT] Author: Paul Lamb, www.paulscode.com 2014-01-04 15:57:41 [iNFO] [sTDOUT] 2014-01-04 15:57:41 [iNFO] [sTDOUT] 2014-01-04 15:57:41 [iNFO] [sTDOUT] Starting up SoundSystem... 2014-01-04 15:57:41 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2014-01-04 15:57:41 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2014-01-04 15:57:41 [iNFO] [sTDOUT] OpenAL initialized. 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.WorldRenderer (input size 4282), found 1 patch 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.WorldRenderer (new size 5337) 2014-01-04 15:57:42 [iNFO] [sTDOUT] 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.GuiCreateWorld (input size 8622), found 1 patch 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.GuiCreateWorld (new size 9632) 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.nbt.CompressedStreamTools (input size 2675), found 1 patch 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.nbt.CompressedStreamTools (new size 3869) 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.WorldType (input size 1708), found 1 patch 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.WorldType (new size 5736) 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.GuiSlot (input size 5586), found 1 patch 2014-01-04 15:57:42 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.GuiSlot (new size 7219) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.chunk.storage.AnvilSaveHandler (input size 967), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.chunk.storage.AnvilSaveHandler (new size 1359) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.ServerListenThread (input size 3163), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.ServerListenThread (new size 4327) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.management.ServerConfigurationManager (input size 16441), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.management.ServerConfigurationManager (new size 21140) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.NetworkListenThread (input size 2105), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.NetworkListenThread (new size 2969) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.integrated.IntegratedServerListenThread (input size 1821), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.integrated.IntegratedServerListenThread (new size 2469) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.command.CommandHandler (input size 3939), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.command.CommandHandler (new size 5482) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.packet.Packet1Login (input size 1643), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.packet.Packet1Login (new size 2505) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.MemoryConnection (input size 2515), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.MemoryConnection (new size 3551) 2014-01-04 15:57:44 [iNFO] [Minecraft-Server] Starting integrated minecraft server version 1.6.2 2014-01-04 15:57:44 [iNFO] [Minecraft-Server] Generating keypair 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.util.CryptManager (input size 5012), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.util.CryptManager (new size 7176) 2014-01-04 15:57:44 [FINEST] [mcp] Sending event FMLServerAboutToStartEvent to mod mcp 2014-01-04 15:57:44 [FINEST] [mcp] Sent event FMLServerAboutToStartEvent to mod mcp 2014-01-04 15:57:44 [FINEST] [FML] Sending event FMLServerAboutToStartEvent to mod FML 2014-01-04 15:57:44 [FINEST] [FML] Sent event FMLServerAboutToStartEvent to mod FML 2014-01-04 15:57:44 [FINEST] [Forge] Sending event FMLServerAboutToStartEvent to mod Forge 2014-01-04 15:57:44 [FINEST] [Forge] Sent event FMLServerAboutToStartEvent to mod Forge 2014-01-04 15:57:44 [FINEST] [specialized Maps] Sending event FMLServerAboutToStartEvent to mod Specialized Maps 2014-01-04 15:57:44 [FINEST] [specialized Maps] Sent event FMLServerAboutToStartEvent to mod Specialized Maps 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.village.VillageCollection (input size 4626), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.village.VillageCollection (new size 6014) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.util.WeightedRandomChestContent (input size 1496), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.util.WeightedRandomChestContent (new size 2532) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.WorldProvider (input size 3245), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.WorldProvider (new size 9679) 2014-01-04 15:57:44 [FINE] [fml.ItemTracker] The difference set is not equal: only on right={4099=Item 4099, Type draco18s.micromods.maps.items.MapEmptyOreDensity, owned by Specialized Maps, ordinal 0, name Blank Ore Density Map, claimedModId null, 4101=Item 4101, Type draco18s.micromods.maps.items.MapEmptyWalkable, owned by Specialized Maps, ordinal 0, name Blank Walkable Map, claimedModId null, 4100=Item 4100, Type draco18s.micromods.maps.items.MapOreDensity, owned by Specialized Maps, ordinal 0, name Ore Density Map, claimedModId null, 4103=Item 4103, Type draco18s.micromods.maps.items.MapEmptyRadar, owned by Specialized Maps, ordinal 0, name Blank Monster Map, claimedModId null, 4102=Item 4102, Type draco18s.micromods.maps.items.MapWalkable, owned by Specialized Maps, ordinal 0, name Walkable Map, claimedModId null, 4104=Item 4104, Type draco18s.micromods.maps.items.MapRadar, owned by Specialized Maps, ordinal 0, name Monster Map, claimedModId null} 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.layer.GenLayer (input size 2163), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.layer.GenLayer (new size 3742) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.layer.GenLayerBiome (input size 1054), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.layer.GenLayerBiome (new size 1205) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.chunk.storage.AnvilChunkLoader (input size 8059), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.chunk.storage.AnvilChunkLoader (new size 11187) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.ChunkProviderServer (input size 5049), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.ChunkProviderServer (new size 7487) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.chunk.Chunk (input size 15810), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.chunk.Chunk (new size 22237) 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.ChunkProviderGenerate (input size 8928), found 1 patch 2014-01-04 15:57:44 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.ChunkProviderGenerate (new size 13882) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.MapGenCaves (input size 3540), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.MapGenCaves (new size 5863) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.MapGenRavine (input size 3290), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.MapGenRavine (new size 5438) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.MapGenStronghold (input size 3254), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.MapGenStronghold (new size 4260) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.SpawnerAnimals (input size 5307), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.SpawnerAnimals (new size 7609) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.EntityTracker (input size 4614), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.EntityTracker (new size 5995) 2014-01-04 15:57:45 [iNFO] [ForgeModLoader] Loading dimension 0 (Copy of Test) (net.minecraft.server.integrated.IntegratedServer@cd59ff) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.ChunkProviderEnd (input size 5462), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.ChunkProviderEnd (new size 8907) 2014-01-04 15:57:45 [iNFO] [ForgeModLoader] Loading dimension 1 (Copy of Test) (net.minecraft.server.integrated.IntegratedServer@cd59ff) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.ChunkProviderHell (input size 8054), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.ChunkProviderHell (new size 13481) 2014-01-04 15:57:45 [iNFO] [ForgeModLoader] Loading dimension -1 (Copy of Test) (net.minecraft.server.integrated.IntegratedServer@cd59ff) 2014-01-04 15:57:45 [iNFO] [Minecraft-Server] Preparing start region for level 0 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentVillageStartPiece (input size 825), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentVillageStartPiece (new size 1194) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentVillage (input size 2927), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentVillage (new size 5233) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.StructureVillagePieces (input size 4514), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.StructureVillagePieces (new size 6122) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentVillageHouse2 (input size 3516), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentVillageHouse2 (new size 4264) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.EntityList (input size 5436), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.EntityList (new size 6703) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.item.EntityMinecartEmpty (input size 551), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.item.EntityMinecartEmpty (new size 1143) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.item.EntityMinecartContainer (input size 3861), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.item.EntityMinecartContainer (new size 5287) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.item.EntityMinecartFurnace (input size 3102), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.item.EntityMinecartFurnace (new size 4143) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.item.EntityMinecartHopper (input size 2390), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.item.EntityMinecartHopper (new size 3486) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.EntityTrackerEntry (input size 9464), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.EntityTrackerEntry (new size 11376) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.ai.EntityAIAttackOnCollide (input size 2127), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.ai.EntityAIAttackOnCollide (new size 2854) 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentMineshaftCorridor (input size 4979), found 1 patch 2014-01-04 15:57:45 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentMineshaftCorridor (new size 6131) 2014-01-04 15:57:46 [iNFO] [Minecraft-Server] Preparing spawn area: 75% 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenDungeons (input size 3392), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenDungeons (new size 3981) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.server.management.PlayerInstance (input size 3641), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.server.management.PlayerInstance (new size 4748) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentScatteredFeatureDesertPyramid (input size 5741), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentScatteredFeatureDesertPyramid (new size 6307) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentScatteredFeatureJunglePyramid (input size 5436), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentScatteredFeatureJunglePyramid (new size 5949) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentStrongholdChestCorridor (input size 2718), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentStrongholdChestCorridor (new size 3320) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentStrongholdLibrary (input size 3756), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentStrongholdLibrary (new size 4369) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.structure.ComponentStrongholdRoomCrossing (input size 3584), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.structure.ComponentStrongholdRoomCrossing (new size 4140) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.block.BlockBaseRailLogic (input size 5119), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.block.BlockBaseRailLogic (new size 6158) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.packet.Packet51MapChunk (input size 3635), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.packet.Packet51MapChunk (new size 4927) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.packet.Packet52MultiBlockChange (input size 2341), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.packet.Packet52MultiBlockChange (new size 3047) 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.packet.Packet56MapChunks (input size 3334), found 1 patch 2014-01-04 15:57:46 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.packet.Packet56MapChunks (new size 4773) 2014-01-04 15:57:47 [iNFO] [Minecraft-Server] Preparing spawn area: 96% 2014-01-04 15:57:47 [FINEST] [mcp] Sending event FMLServerStartingEvent to mod mcp 2014-01-04 15:57:47 [FINEST] [mcp] Sent event FMLServerStartingEvent to mod mcp 2014-01-04 15:57:47 [FINEST] [FML] Sending event FMLServerStartingEvent to mod FML 2014-01-04 15:57:47 [FINEST] [FML] Sent event FMLServerStartingEvent to mod FML 2014-01-04 15:57:47 [FINEST] [Forge] Sending event FMLServerStartingEvent to mod Forge 2014-01-04 15:57:47 [FINEST] [Forge] Sent event FMLServerStartingEvent to mod Forge 2014-01-04 15:57:47 [FINEST] [specialized Maps] Sending event FMLServerStartingEvent to mod Specialized Maps 2014-01-04 15:57:47 [FINEST] [specialized Maps] Sent event FMLServerStartingEvent to mod Specialized Maps 2014-01-04 15:57:47 [FINEST] [mcp] Sending event FMLServerStartedEvent to mod mcp 2014-01-04 15:57:47 [FINEST] [mcp] Sent event FMLServerStartedEvent to mod mcp 2014-01-04 15:57:47 [FINEST] [FML] Sending event FMLServerStartedEvent to mod FML 2014-01-04 15:57:47 [FINEST] [FML] Sent event FMLServerStartedEvent to mod FML 2014-01-04 15:57:47 [FINEST] [Forge] Sending event FMLServerStartedEvent to mod Forge 2014-01-04 15:57:47 [FINEST] [Forge] Sent event FMLServerStartedEvent to mod Forge 2014-01-04 15:57:47 [FINEST] [specialized Maps] Sending event FMLServerStartedEvent to mod Specialized Maps 2014-01-04 15:57:47 [FINEST] [specialized Maps] Sent event FMLServerStartedEvent to mod Specialized Maps 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.enchantment.EnchantmentHelper (input size 6149), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.enchantment.EnchantmentHelper (new size 8100) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.multiplayer.NetClientHandler (input size 29372), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.multiplayer.NetClientHandler (new size 38742) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.enchantment.Enchantment (input size 3121), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.enchantment.Enchantment (new size 4234) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.entity.EntityOtherPlayerMP (input size 2872), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.entity.EntityOtherPlayerMP (new size 3750) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.ChunkCache (input size 4269), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.ChunkCache (new size 6698) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.ItemInWorldManager (input size 4441), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.ItemInWorldManager (new size 8000) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.inventory.ContainerEnchantment (input size 4267), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.inventory.ContainerEnchantment (new size 5110) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.inventory.ContainerRepair (input size 6592), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.inventory.ContainerRepair (new size 7890) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.inventory.ContainerFurnace (input size 2301), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.inventory.ContainerFurnace (new size 2795) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.entity.player.InventoryPlayer (input size 7738), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.entity.player.InventoryPlayer (new size 9890) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.inventory.Slot (input size 1450), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.inventory.Slot (new size 2806) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.inventory.SlotCrafting (input size 2022), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.inventory.SlotCrafting (new size 3019) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.inventory.SlotArmor (input size 719), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.inventory.SlotArmor (new size 1088) 2014-01-04 15:57:47 [iNFO] [sTDOUT] loading single player 2014-01-04 15:57:47 [iNFO] [Minecraft-Server] Draco18s[/127.0.0.1:0] logged in with entity id 620 at (143.5, 64.0, 252.5) 2014-01-04 15:57:47 [iNFO] [Minecraft-Server] Draco18s joined the game 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.multiplayer.PlayerControllerMP (input size 6480), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.multiplayer.PlayerControllerMP (new size 8999) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.particle.EntityFireworkStarterFX (input size 5227), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.particle.EntityFireworkStarterFX (new size 7116) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.multiplayer.ChunkProviderClient (input size 1848), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.multiplayer.ChunkProviderClient (new size 3149) 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.world.gen.feature.WorldGenDeadBush (input size 745), found 1 patch 2014-01-04 15:57:47 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.world.gen.feature.WorldGenDeadBush (new size 1069) 2014-01-04 15:57:48 [iNFO] [sTDOUT] Setting up custom skins 2014-01-04 15:57:48 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.network.NetLoginHandler (input size 5554), found 1 patch 2014-01-04 15:57:48 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.network.NetLoginHandler (new size 7523) 2014-01-04 15:57:48 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.util.MovingObjectPosition (input size 777), found 1 patch 2014-01-04 15:57:48 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.util.MovingObjectPosition (new size 1109) 2014-01-04 15:57:48 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.renderer.tileentity.TileEntityChestRenderer (input size 2686), found 1 patch 2014-01-04 15:57:48 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.renderer.tileentity.TileEntityChestRenderer (new size 3655) 2014-01-04 15:57:49 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.inventory.GuiContainerCreative (input size 12366), found 1 patch 2014-01-04 15:57:49 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.inventory.GuiContainerCreative (new size 15968) 2014-01-04 15:57:49 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.client.gui.achievement.GuiAchievements (input size 7316), found 1 patch 2014-01-04 15:57:49 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.client.gui.achievement.GuiAchievements (new size 10361) 2014-01-04 15:57:49 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.item.EnumRarity (input size 983), found 1 patch 2014-01-04 15:57:49 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.item.EnumRarity (new size 1195) 2014-01-04 15:57:50 [FINE] [ForgeModLoader] Runtime patching class net.minecraft.potion.PotionEffect (input size 3062), found 1 patch 2014-01-04 15:57:50 [FINE] [ForgeModLoader] Successfully applied runtime patches for net.minecraft.potion.PotionEffect (new size 5363) 2014-01-04 15:57:54 [iNFO] [sTDERR] java.lang.NoSuchFieldError: field_76200_c 2014-01-04 15:57:54 [iNFO] [sTDERR] at draco18s.micromods.maps.items.MapEmptyOreDensity.func_77659_a(MapEmptyOreDensity.java:32) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.item.ItemStack.func_77957_a(ItemStack.java:176) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.item.ItemInWorldManager.func_73085_a(ItemInWorldManager.java:353) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.network.NetServerHandler.func_72472_a(NetServerHandler.java:540) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.network.packet.Packet15Place.func_73279_a(SourceFile:58) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.network.MemoryConnection.func_74428_b(MemoryConnection.java:89) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.network.NetServerHandler.func_72570_d(NetServerHandler.java:141) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.network.NetworkListenThread.func_71747_b(NetworkListenThread.java:54) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServerListenThread.func_71747_b(IntegratedServerListenThread.java:109) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:689) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:585) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:129) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482) 2014-01-04 15:57:54 [iNFO] [sTDERR] at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:582) 2014-01-04 15:57:54 [sEVERE] [Minecraft-Server] Encountered an unexpected exception NoSuchFieldError java.lang.NoSuchFieldError: field_76200_c at draco18s.micromods.maps.items.MapEmptyOreDensity.func_77659_a(MapEmptyOreDensity.java:32) at net.minecraft.item.ItemStack.func_77957_a(ItemStack.java:176) at net.minecraft.item.ItemInWorldManager.func_73085_a(ItemInWorldManager.java:353) at net.minecraft.network.NetServerHandler.func_72472_a(NetServerHandler.java:540) at net.minecraft.network.packet.Packet15Place.func_73279_a(SourceFile:58) at net.minecraft.network.MemoryConnection.func_74428_b(MemoryConnection.java:89) at net.minecraft.network.NetServerHandler.func_72570_d(NetServerHandler.java:141) at net.minecraft.network.NetworkListenThread.func_71747_b(NetworkListenThread.java:54) at net.minecraft.server.integrated.IntegratedServerListenThread.func_71747_b(IntegratedServerListenThread.java:109) at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:689) at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:585) at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:129) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:482) at net.minecraft.server.ThreadMinecraftServer.run(SourceFile:582) 2014-01-04 15:57:54 [sEVERE] [Minecraft-Server] This crash report has been saved to: Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\instances\162\minecraft\crash-reports\crash-2014-01-04_15.57.54-server.txt 2014-01-04 15:57:54 [iNFO] [Minecraft-Server] Stopping server 2014-01-04 15:57:54 [iNFO] [Minecraft-Server] Saving players 2014-01-04 15:57:54 [iNFO] [Minecraft-Server] Draco18s left the game 2014-01-04 15:57:54 [iNFO] [Minecraft-Server] Saving worlds 2014-01-04 15:57:54 [iNFO] [Minecraft-Server] Saving chunks for level 'Copy of Test'/Overworld 2014-01-04 15:57:55 [iNFO] [Minecraft-Server] Saving chunks for level 'Copy of Test'/Nether 2014-01-04 15:57:55 [iNFO] [Minecraft-Server] Saving chunks for level 'Copy of Test'/The End 2014-01-04 15:57:56 [iNFO] [ForgeModLoader] Unloading dimension 0 2014-01-04 15:57:56 [iNFO] [ForgeModLoader] Unloading dimension -1 2014-01-04 15:57:56 [iNFO] [ForgeModLoader] Unloading dimension 1 2014-01-04 15:57:56 [FINEST] [mcp] Sending event FMLServerStoppedEvent to mod mcp 2014-01-04 15:57:56 [FINEST] [mcp] Sent event FMLServerStoppedEvent to mod mcp 2014-01-04 15:57:56 [FINEST] [FML] Sending event FMLServerStoppedEvent to mod FML 2014-01-04 15:57:56 [FINEST] [FML] Sent event FMLServerStoppedEvent to mod FML 2014-01-04 15:57:56 [FINEST] [Forge] Sending event FMLServerStoppedEvent to mod Forge 2014-01-04 15:57:56 [FINEST] [Forge] Sent event FMLServerStoppedEvent to mod Forge 2014-01-04 15:57:56 [FINEST] [specialized Maps] Sending event FMLServerStoppedEvent to mod Specialized Maps 2014-01-04 15:57:56 [FINEST] [specialized Maps] Sent event FMLServerStoppedEvent to mod Specialized Maps 2014-01-04 15:57:56 [iNFO] [ForgeModLoader] The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded. 2014-01-04 15:57:56 [iNFO] [sTDERR] java.lang.NoSuchFieldError: field_76200_c 2014-01-04 15:57:56 [iNFO] [sTDERR] at draco18s.micromods.maps.items.MapEmptyOreDensity.func_77659_a(MapEmptyOreDensity.java:32) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.item.ItemStack.func_77957_a(ItemStack.java:176) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.client.multiplayer.PlayerControllerMP.func_78769_a(PlayerControllerMP.java:428) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71402_c(Minecraft.java:1415) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1866) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:908) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:836) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.client.main.Main.main(SourceFile:101) 2014-01-04 15:57:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-04 15:57:56 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2014-01-04 15:57:56 [iNFO] [sTDERR] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2014-01-04 15:57:56 [iNFO] [sTDOUT] ---- Minecraft Crash Report ---- 2014-01-04 15:57:56 [iNFO] [sTDOUT] // My bad. 2014-01-04 15:57:56 [iNFO] [sTDOUT] 2014-01-04 15:57:56 [iNFO] [sTDOUT] Time: 1/4/14 3:57 PM 2014-01-04 15:57:56 [iNFO] [sTDOUT] Description: Unexpected error 2014-01-04 15:57:56 [iNFO] [sTDOUT] 2014-01-04 15:57:56 [iNFO] [sTDOUT] java.lang.NoSuchFieldError: field_76200_c 2014-01-04 15:57:56 [iNFO] [sTDOUT] at draco18s.micromods.maps.items.MapEmptyOreDensity.func_77659_a(MapEmptyOreDensity.java:32) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.item.ItemStack.func_77957_a(ItemStack.java:176) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.multiplayer.PlayerControllerMP.func_78769_a(PlayerControllerMP.java:428) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_71402_c(Minecraft.java:1415) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1866) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_71411_J(Minecraft.java:908) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:836) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(SourceFile:101) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2014-01-04 15:57:56 [iNFO] [sTDOUT] 2014-01-04 15:57:56 [iNFO] [sTDOUT] 2014-01-04 15:57:56 [iNFO] [sTDOUT] A detailed walkthrough of the error, its code path and all known details is as follows: 2014-01-04 15:57:56 [iNFO] [sTDOUT] --------------------------------------------------------------------------------------- 2014-01-04 15:57:56 [iNFO] [sTDOUT] 2014-01-04 15:57:56 [iNFO] [sTDOUT] -- Head -- 2014-01-04 15:57:56 [iNFO] [sTDOUT] Stacktrace: 2014-01-04 15:57:56 [iNFO] [sTDOUT] at draco18s.micromods.maps.items.MapEmptyOreDensity.func_77659_a(MapEmptyOreDensity.java:32) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.item.ItemStack.func_77957_a(ItemStack.java:176) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.multiplayer.PlayerControllerMP.func_78769_a(PlayerControllerMP.java:428) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_71402_c(Minecraft.java:1415) 2014-01-04 15:57:56 [iNFO] [sTDOUT] 2014-01-04 15:57:56 [iNFO] [sTDOUT] -- Affected level -- 2014-01-04 15:57:56 [iNFO] [sTDOUT] Details: 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level name: MpServer 2014-01-04 15:57:56 [iNFO] [sTDOUT] All players: 1 total; [EntityClientPlayerMP['Draco18s'/620, l='MpServer', x=143.50, y=65.62, z=252.50]] 2014-01-04 15:57:56 [iNFO] [sTDOUT] Chunk stats: MultiplayerChunkCache: 441 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level seed: 0 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level generator: ID 00 - default, ver 1. Features enabled: false 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level generator options: 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level spawn location: World: (148,64,256), Chunk: (at 4,4,0 in 9,16; contains blocks 144,0,256 to 159,255,271), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level time: 244 game time, 244 day time 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level dimension: 0 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level storage version: 0x00000 - Unknown? 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) 2014-01-04 15:57:56 [iNFO] [sTDOUT] Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false 2014-01-04 15:57:56 [iNFO] [sTDOUT] Forced entities: 300 total; [EntityFallingSand['Falling Block'/3284, l='MpServer', x=106.50, y=50.68, z=335.50], EntityFallingSand['Falling Block'/3285, l='MpServer', x=106.50, y=50.68, z=334.50], EntityFallingSand['Falling Block'/3286, l='MpServer', x=104.50, y=4.46, z=343.50], EntityFallingSand['Falling Block'/3280, l='MpServer', x=109.50, y=49.68, z=335.50], EntityFallingSand['Falling Block'/3281, l='MpServer', x=107.50, y=50.68, z=334.50], EntityFallingSand['Falling Block'/3283, l='MpServer', x=107.50, y=50.68, z=335.50], EntityFallingSand['Falling Block'/3292, l='MpServer', x=104.50, y=4.46, z=346.50], EntityFallingSand['Falling Block'/3294, l='MpServer', x=106.50, y=4.49, z=345.50], EntityFallingSand['Falling Block'/3289, l='MpServer', x=104.50, y=4.46, z=345.50], EntityFallingSand['Falling Block'/3290, l='MpServer', x=103.50, y=4.46, z=345.50], EntityFallingSand['Falling Block'/3269, l='MpServer', x=109.50, y=16.68, z=291.50], EntityFallingSand['Falling Block'/3268, l='MpServer', x=110.50, y=16.68, z=291.50], EntityFallingSand['Falling Block'/3271, l='MpServer', x=108.50, y=16.68, z=290.50], EntityFallingSand['Falling Block'/3270, l='MpServer', x=110.50, y=17.68, z=292.50], EntityFallingSand['Falling Block'/3265, l='MpServer', x=110.50, y=16.68, z=290.50], EntityFallingSand['Falling Block'/3267, l='MpServer', x=109.50, y=16.68, z=290.50], EntityFallingSand['Falling Block'/3277, l='MpServer', x=104.50, y=7.46, z=329.50], EntityFallingSand['Falling Block'/3279, l='MpServer', x=105.50, y=7.46, z=328.50], EntityFallingSand['Falling Block'/3278, l='MpServer', x=105.50, y=7.46, z=329.50], EntityFallingSand['Falling Block'/3273, l='MpServer', x=108.50, y=16.68, z=292.50], EntitySpider['Spider'/29, l='MpServer', x=74.28, y=21.00, z=204.81], EntityFallingSand['Falling Block'/3272, l='MpServer', x=108.50, y=16.68, z=291.50], EntityZombie['Zombie'/31, l='MpServer', x=64.50, y=34.00, z=206.50], EntityFallingSand['Falling Block'/3274, l='MpServer', x=109.50, y=17.68, z=292.50], EntityZombie['Zombie'/30, l='MpServer', x=70.39, y=21.00, z=204.88], EntityCreeper['Creeper'/34, l='MpServer', x=64.50, y=27.00, z=248.50], EntityBat['Bat'/35, l='MpServer', x=75.59, y=48.05, z=317.13], EntityBat['Bat'/32, l='MpServer', x=77.25, y=58.10, z=217.75], EntityFallingSand['Falling Block'/3317, l='MpServer', x=112.50, y=56.68, z=341.50], EntityBat['Bat'/33, l='MpServer', x=80.50, y=29.05, z=241.50], EntityFallingSand['Falling Block'/3314, l='MpServer', x=101.50, y=3.49, z=350.50], EntityFallingSand['Falling Block'/3312, l='MpServer', x=102.50, y=4.46, z=349.50], EntitySpider['Spider'/36, l='MpServer', x=69.72, y=50.00, z=324.66], EntityCreeper['Creeper'/42, l='MpServer', x=89.50, y=14.00, z=325.50], EntityZombie['Zombie'/40, l='MpServer', x=90.50, y=48.00, z=188.50], EntityBat['Bat'/41, l='MpServer', x=84.38, y=49.57, z=308.56], EntityCreeper['Creeper'/45, l='MpServer', x=111.50, y=42.00, z=219.50], EntityFallingSand['Falling Block'/3303, l='MpServer', x=109.50, y=4.49, z=350.50], EntityCreeper['Creeper'/51, l='MpServer', x=100.50, y=18.00, z=242.50], EntityFallingSand['Falling Block'/3302, l='MpServer', x=110.50, y=5.49, z=349.50], EntityFallingSand['Falling Block'/3299, l='MpServer', x=103.50, y=4.49, z=348.50], EntityFallingSand['Falling Block'/3297, l='MpServer', x=102.50, y=4.49, z=348.50], EntityZombie['Zombie'/52, l='MpServer', x=98.50, y=18.00, z=246.50], EntityItem['item.tile.gravel'/59, l='MpServer', x=96.47, y=15.13, z=316.56], EntityCreeper['Creeper'/58, l='MpServer', x=108.50, y=48.00, z=301.50], EntityFallingSand['Falling Block'/3309, l='MpServer', x=107.50, y=4.46, z=351.50], EntityFallingSand['Falling Block'/3308, l='MpServer', x=108.50, y=4.49, z=351.50], EntityFallingSand['Falling Block'/3305, l='MpServer', x=110.50, y=4.49, z=351.50], EntityFallingSand['Falling Block'/3304, l='MpServer', x=109.50, y=4.49, z=351.50], EntityZombie['Zombie'/65, l='MpServer', x=109.50, y=54.00, z=330.50], EntitySkeleton['Skeleton'/66, l='MpServer', x=110.50, y=54.00, z=329.50], EntityFallingSand['Falling Block'/2252, l='MpServer', x=0.50, y=43.03, z=239.50], EntityFallingSand['Falling Block'/2244, l='MpServer', x=-0.50, y=28.03, z=259.50], EntityFallingSand['Falling Block'/2241, l='MpServer', x=-0.50, y=43.03, z=238.50], EntityFallingSand['Falling Block'/2243, l='MpServer', x=-0.50, y=28.03, z=258.50], EntityFallingSand['Falling Block'/2242, l='MpServer', x=-0.50, y=43.03, z=239.50], EntityFallingSand['Falling Block'/2302, l='MpServer', x=34.50, y=47.03, z=155.50], EntityFallingSand['Falling Block'/2303, l='MpServer', x=35.50, y=48.03, z=155.50], EntityFallingSand['Falling Block'/2301, l='MpServer', x=43.50, y=24.03, z=144.50], EntityFallingSand['Falling Block'/3255, l='MpServer', x=105.50, y=47.68, z=214.50], EntityFallingSand['Falling Block'/3258, l='MpServer', x=119.50, y=23.68, z=225.50], EntityFallingSand['Falling Block'/3256, l='MpServer', x=105.50, y=47.68, z=215.50], EntityFallingSand['Falling Block'/3257, l='MpServer', x=118.50, y=23.68, z=225.50], EntityFallingSand['Falling Block'/3235, l='MpServer', x=112.50, y=47.68, z=118.50], EntityFallingSand['Falling Block'/3234, l='MpServer', x=112.50, y=46.68, z=117.50], EntityFallingSand['Falling Block'/3233, l='MpServer', x=114.50, y=47.68, z=116.50], EntityFallingSand['Falling Block'/3232, l='MpServer', x=113.50, y=46.68, z=116.50], EntityFallingSand['Falling Block'/3239, l='MpServer', x=113.50, y=49.68, z=119.50], EntityFallingSand['Falling Block'/3238, l='MpServer', x=113.50, y=49.68, z=118.50], EntityFallingSand['Falling Block'/3237, l='MpServer', x=113.50, y=48.68, z=117.50], EntityFallingSand['Falling Block'/3236, l='MpServer', x=112.50, y=46.68, z=119.50], EntityFallingSand['Falling Block'/3243, l='MpServer', x=119.50, y=63.68, z=141.50], EntityFallingSand['Falling Block'/3242, l='MpServer', x=117.50, y=63.68, z=142.50], EntityFallingSand['Falling Block'/3165, l='MpServer', x=95.50, y=17.68, z=314.50], EntityFallingSand['Falling Block'/3167, l='MpServer', x=95.50, y=17.68, z=315.50], EntityFallingSand['Falling Block'/2067, l='MpServer', x=273.50, y=15.96, z=345.50], EntityFallingSand['Falling Block'/2066, l='MpServer', x=274.50, y=15.96, z=344.50], EntityFallingSand['Falling Block'/3160, l='MpServer', x=94.50, y=7.49, z=287.50], EntityCreeper['Creeper'/143, l='MpServer', x=123.88, y=30.00, z=179.50], EntityBat['Bat'/142, l='MpServer', x=122.56, y=55.85, z=180.41], EntitySkeleton['Skeleton'/144, l='MpServer', x=124.88, y=30.00, z=179.50], EntitySkeleton['Skeleton'/145, l='MpServer', x=122.50, y=30.00, z=177.50], EntityFallingSand['Falling Block'/3193, l='MpServer', x=96.50, y=17.68, z=314.50], EntityFallingSand['Falling Block'/3192, l='MpServer', x=97.50, y=17.68, z=313.50], EntityFallingSand['Falling Block'/3191, l='MpServer', x=96.50, y=17.68, z=313.50], EntityCreeper['Creeper'/163, l='MpServer', x=127.50, y=22.00, z=217.50], EntityFallingSand['Falling Block'/3190, l='MpServer', x=97.50, y=17.68, z=312.50], EntityCreeper['Creeper'/162, l='MpServer', x=120.00, y=20.00, z=208.56], EntityFallingSand['Falling Block'/3189, l='MpServer', x=98.50, y=17.68, z=310.50], EntityBat['Bat'/161, l='MpServer', x=128.38, y=59.26, z=183.31], EntityFallingSand['Falling Block'/3188, l='MpServer', x=97.50, y=17.68, z=311.50], EntityBat['Bat'/160, l='MpServer', x=128.25, y=56.18, z=179.63], EntityFallingSand['Falling Block'/3187, l='MpServer', x=97.50, y=17.68, z=310.50], EntityFallingSand['Falling Block'/3186, l='MpServer', x=97.50, y=17.68, z=309.50], EntityCreeper['Creeper'/165, l='MpServer', x=114.50, y=34.00, z=218.50], EntityFallingSand['Falling Block'/3184, l='MpServer', x=92.50, y=11.68, z=357.50], EntitySkeleton['Skeleton'/164, l='MpServer', x=126.50, y=45.00, z=215.50], EntityFallingSand['Falling Block'/3182, l='MpServer', x=91.50, y=21.68, z=337.50], EntitySkeleton['Skeleton'/186, l='MpServer', x=116.47, y=33.00, z=331.09], EntityFallingSand['Falling Block'/3183, l='MpServer', x=90.50, y=21.68, z=337.50], EntityFallingSand['Falling Block'/3180, l='MpServer', x=91.50, y=21.68, z=336.50], EntitySkeleton['Skeleton'/184, l='MpServer', x=116.69, y=32.00, z=328.41], EntityFallingSand['Falling Block'/3181, l='MpServer', x=90.50, y=21.68, z=336.50], EntitySkeleton['Skeleton'/185, l='MpServer', x=113.50, y=32.00, z=330.50], EntityFallingSand['Falling Block'/3179, l='MpServer', x=92.50, y=20.68, z=336.50], EntityZombie['Zombie'/182, l='MpServer', x=126.50, y=49.00, z=240.50], EntityFallingSand['Falling Block'/3171, l='MpServer', x=93.50, y=47.68, z=309.50], EntitySkeleton['Skeleton'/183, l='MpServer', x=117.56, y=32.00, z=327.44], EntityFallingSand['Falling Block'/3168, l='MpServer', x=95.50, y=17.68, z=316.50], EntityFallingSand['Falling Block'/3169, l='MpServer', x=94.50, y=17.68, z=317.50], EntityFallingSand['Falling Block'/3527, l='MpServer', x=135.50, y=54.18, z=194.50], EntityFallingSand['Falling Block'/3526, l='MpServer', x=133.50, y=54.18, z=194.50], EntityFallingSand['Falling Block'/3525, l='MpServer', x=135.50, y=54.18, z=193.50], EntityFallingSand['Falling Block'/3524, l='MpServer', x=135.50, y=54.18, z=192.50], EntityFallingSand['Falling Block'/3523, l='MpServer', x=136.50, y=53.18, z=192.50], EntityFallingSand['Falling Block'/3522, l='MpServer', x=134.50, y=54.18, z=194.50], EntityFallingSand['Falling Block'/3521, l='MpServer', x=134.50, y=54.18, z=193.50], EntityFallingSand['Falling Block'/3520, l='MpServer', x=133.50, y=54.18, z=193.50], EntityFallingSand['Falling Block'/3535, l='MpServer', x=133.50, y=54.18, z=196.50], EntityFallingSand['Falling Block'/3534, l='MpServer', x=132.50, y=54.18, z=196.50], EntityFallingSand['Falling Block'/3533, l='MpServer', x=132.50, y=54.18, z=195.50], EntityFallingSand['Falling Block'/3532, l='MpServer', x=135.50, y=53.18, z=196.50], EntityFallingSand['Falling Block'/3531, l='MpServer', x=135.50, y=54.18, z=195.50], EntityFallingSand['Falling Block'/3530, l='MpServer', x=134.50, y=54.18, z=195.50], EntityFallingSand['Falling Block'/3529, l='MpServer', x=133.50, y=54.18, z=195.50], EntityFallingSand['Falling Block'/3528, l='MpServer', x=132.50, y=54.18, z=194.50], EntityFallingSand['Falling Block'/3542, l='MpServer', x=134.50, y=53.18, z=198.50], EntityFallingSand['Falling Block'/3543, l='MpServer', x=135.50, y=53.18, z=197.50], EntityFallingSand['Falling Block'/3540, l='MpServer', x=132.50, y=54.18, z=197.50], EntityFallingSand['Falling Block'/3541, l='MpServer', x=132.50, y=53.18, z=199.50], EntityFallingSand['Falling Block'/3538, l='MpServer', x=133.50, y=53.18, z=198.50], EntityFallingSand['Falling Block'/3539, l='MpServer', x=134.50, y=54.18, z=196.50], EntityFallingSand['Falling Block'/3536, l='MpServer', x=134.50, y=53.18, z=197.50], EntityFallingSand['Falling Block'/3537, l='MpServer', x=133.50, y=54.18, z=197.50], EntityFallingSand['Falling Block'/3551, l='MpServer', x=128.50, y=40.18, z=228.50], EntityFallingSand['Falling Block'/3548, l='MpServer', x=129.50, y=40.18, z=228.50], EntityFallingSand['Falling Block'/3549, l='MpServer', x=129.50, y=41.18, z=226.50], EntityFallingSand['Falling Block'/3547, l='MpServer', x=129.50, y=40.18, z=227.50], EntityFallingSand['Falling Block'/3544, l='MpServer', x=133.50, y=53.18, z=199.50], EntityZombie['Zombie'/304, l='MpServer', x=136.00, y=48.06, z=194.63], EntityFallingSand['Falling Block'/3559, l='MpServer', x=121.50, y=26.18, z=352.50], EntityFallingSand['Falling Block'/3553, l='MpServer', x=118.50, y=45.18, z=222.50], EntityFallingSand['Falling Block'/3552, l='MpServer', x=119.50, y=44.18, z=222.50], EntityFallingSand['Falling Block'/3565, l='MpServer', x=131.50, y=55.18, z=356.50], EntityFallingSand['Falling Block'/3561, l='MpServer', x=121.50, y=26.18, z=353.50], EntityFallingSand['Falling Block'/3560, l='MpServer', x=120.50, y=26.18, z=353.50], EntityFallingSand['Falling Block'/3563, l='MpServer', x=122.50, y=26.18, z=353.50], EntityFallingSand['Falling Block'/3562, l='MpServer', x=122.50, y=26.18, z=352.50], EntityFallingSand['Falling Block'/2488, l='MpServer', x=45.50, y=19.61, z=170.50], EntityFallingSand['Falling Block'/2491, l='MpServer', x=45.50, y=18.61, z=172.50], EntityZombie['Zombie'/293, l='MpServer', x=136.50, y=28.00, z=188.50], EntitySkeleton['Skeleton'/295, l='MpServer', x=129.88, y=31.00, z=187.44], EntityFallingSand['Falling Block'/3581, l='MpServer', x=130.50, y=26.18, z=377.50], EntityFallingSand['Falling Block'/2482, l='MpServer', x=46.50, y=20.61, z=168.50], EntityFallingSand['Falling Block'/2484, l='MpServer', x=45.50, y=20.61, z=168.50], EntitySkeleton['Skeleton'/301, l='MpServer', x=137.61, y=48.06, z=192.09], EntitySkeleton['Skeleton'/302, l='MpServer', x=137.12, y=48.00, z=195.30], EntityZombie['Zombie'/303, l='MpServer', x=140.53, y=49.00, z=193.72], EntityZombie['Zombie'/343, l='MpServer', x=141.75, y=41.00, z=212.66], EntityZombie['Zombie'/342, l='MpServer', x=139.50, y=33.00, z=208.50], EntityZombie['Zombie'/341, l='MpServer', x=136.25, y=44.00, z=212.34], EntityZombie['Zombie'/340, l='MpServer', x=134.69, y=45.00, z=214.69], EntitySkeleton['Skeleton'/339, l='MpServer', x=128.50, y=45.00, z=213.50], EntityFallingSand['Falling Block'/2507, l='MpServer', x=45.50, y=21.61, z=167.50], EntityBat['Bat'/338, l='MpServer', x=130.34, y=37.76, z=214.56], EntityFallingSand['Falling Block'/2506, l='MpServer', x=47.50, y=22.61, z=166.50], EntityBat['Bat'/337, l='MpServer', x=137.69, y=38.10, z=218.75], EntitySpider['Spider'/336, l='MpServer', x=131.22, y=15.06, z=219.81], EntityFallingSand['Falling Block'/2502, l='MpServer', x=52.50, y=45.61, z=184.50], EntityFallingSand['Falling Block'/2501, l='MpServer', x=52.50, y=46.61, z=185.50], EntityFallingSand['Falling Block'/2500, l='MpServer', x=52.50, y=46.61, z=186.50], EntityFallingSand['Falling Block'/2541, l='MpServer', x=49.50, y=30.61, z=226.50], EntityFallingSand['Falling Block'/2542, l='MpServer', x=48.50, y=31.61, z=233.50], EntityFallingSand['Falling Block'/2536, l='MpServer', x=54.50, y=13.61, z=201.50], EntityFallingSand['Falling Block'/2535, l='MpServer', x=53.50, y=13.61, z=201.50], EntityFallingSand['Falling Block'/3501, l='MpServer', x=122.50, y=62.18, z=137.50], EntityFallingSand['Falling Block'/3502, l='MpServer', x=122.50, y=62.18, z=138.50], EntityHorse['Horse'/356, l='MpServer', x=141.09, y=66.00, z=231.94], EntityFallingSand['Falling Block'/2556, l='MpServer', x=40.50, y=8.39, z=256.50], EntityHorse['Horse'/357, l='MpServer', x=142.91, y=66.00, z=229.91], EntityHorse['Horse'/358, l='MpServer', x=139.81, y=66.00, z=227.22], EntityFallingSand['Falling Block'/2558, l='MpServer', x=38.50, y=8.39, z=256.50], EntityHorse['Horse'/359, l='MpServer', x=137.50, y=65.00, z=229.91], EntityFallingSand['Falling Block'/2552, l='MpServer', x=40.50, y=7.39, z=257.50], EntityFallingSand['Falling Block'/2554, l='MpServer', x=39.50, y=8.39, z=256.50], EntityFallingSand['Falling Block'/2555, l='MpServer', x=39.50, y=8.39, z=257.50], EntityFallingSand['Falling Block'/2548, l='MpServer', x=40.50, y=8.39, z=254.50], EntityFallingSand['Falling Block'/2549, l='MpServer', x=41.50, y=8.39, z=254.50], EntityFallingSand['Falling Block'/3514, l='MpServer', x=134.50, y=53.18, z=190.50], EntityFallingSand['Falling Block'/2550, l='MpServer', x=39.50, y=9.49, z=254.50], EntityFallingSand['Falling Block'/3515, l='MpServer', x=135.50, y=53.18, z=191.50], EntityFallingSand['Falling Block'/3516, l='MpServer', x=134.50, y=54.18, z=191.50], EntityHorse['Horse'/360, l='MpServer', x=139.38, y=66.00, z=230.28], EntityFallingSand['Falling Block'/2544, l='MpServer', x=49.50, y=31.61, z=233.50], EntityFallingSand['Falling Block'/3517, l='MpServer', x=135.50, y=53.18, z=190.50], EntityZombie['Zombie'/361, l='MpServer', x=137.48, y=24.00, z=267.46], EntityFallingSand['Falling Block'/2545, l='MpServer', x=41.50, y=7.39, z=255.50], EntityFallingSand['Falling Block'/3518, l='MpServer', x=134.50, y=54.18, z=192.50], EntityCreeper['Creeper'/362, l='MpServer', x=138.05, y=24.00, z=266.64], EntityFallingSand['Falling Block'/2546, l='MpServer', x=40.50, y=8.39, z=255.50], EntityFallingSand['Falling Block'/3519, l='MpServer', x=133.50, y=54.18, z=192.50], EntityFallingSand['Falling Block'/2547, l='MpServer', x=39.50, y=9.49, z=255.50], EntitySkeleton['Skeleton'/410, l='MpServer', x=145.94, y=42.00, z=207.66], EntityZombie['Zombie'/411, l='MpServer', x=146.50, y=42.00, z=208.56], EntityFallingSand['Falling Block'/2304, l='MpServer', x=34.50, y=48.03, z=156.50], EntitySkeleton['Skeleton'/409, l='MpServer', x=154.50, y=41.00, z=203.50], EntityFallingSand['Falling Block'/2305, l='MpServer', x=30.50, y=27.03, z=183.50], EntitySkeleton['Skeleton'/414, l='MpServer', x=152.50, y=21.00, z=253.50], EntityCreeper['Creeper'/415, l='MpServer', x=157.50, y=18.00, z=296.50], EntitySkeleton['Skeleton'/412, l='MpServer', x=154.50, y=49.00, z=208.50], EntityHorse['Horse'/413, l='MpServer', x=148.84, y=67.00, z=230.47], EntityFallingSand['Falling Block'/2309, l='MpServer', x=29.50, y=27.03, z=183.50], EntityFallingSand['Falling Block'/2314, l='MpServer', x=26.50, y=14.03, z=216.50], EntityItem['item.tile.gravel'/1472, l='MpServer', x=204.22, y=20.13, z=228.19], EntityItem['item.tile.rail'/440, l='MpServer', x=198.59, y=15.13, z=239.69], EntityChicken['Chicken'/432, l='MpServer', x=185.50, y=63.00, z=306.50], EntityChicken['Chicken'/433, l='MpServer', x=184.50, y=63.00, z=305.50], EntityChicken['Chicken'/434, l='MpServer', x=187.50, y=63.00, z=306.50], EntityChicken['Chicken'/435, l='MpServer', x=187.50, y=63.00, z=309.50], EntityItem['item.tile.rail'/438, l='MpServer', x=198.81, y=15.13, z=238.63], EntityItem['item.tile.rail'/439, l='MpServer', x=199.75, y=15.13, z=237.63], EntityChicken['Chicken'/425, l='MpServer', x=176.56, y=69.00, z=189.56], EntityChicken['Chicken'/424, l='MpServer', x=189.81, y=71.00, z=204.97], EntityChicken['Chicken'/427, l='MpServer', x=184.19, y=69.00, z=196.50], EntityChicken['Chicken'/426, l='MpServer', x=190.72, y=68.00, z=198.72], EntityChicken['Chicken'/429, l='MpServer', x=184.50, y=64.00, z=285.50], EntityChicken['Chicken'/428, l='MpServer', x=186.50, y=64.00, z=282.50], EntityChicken['Chicken'/431, l='MpServer', x=189.50, y=64.00, z=285.50], EntityChicken['Chicken'/430, l='MpServer', x=185.50, y=64.00, z=286.50], EntityZombie['Zombie'/417, l='MpServer', x=152.50, y=51.00, z=322.50], EntityCreeper['Creeper'/416, l='MpServer', x=156.50, y=18.00, z=296.50], EntityZombie['Zombie'/418, l='MpServer', x=153.50, y=51.00, z=324.50], EntityZombie['Zombie'/421, l='MpServer', x=172.50, y=37.00, z=225.50], EntitySpider['Spider'/420, l='MpServer', x=173.06, y=35.00, z=221.06], EntityBat['Bat'/469, l='MpServer', x=222.41, y=54.64, z=321.44], EntityMinecartChest['entity.MinecartChest.name'/466, l='MpServer', x=217.50, y=13.34, z=287.50], EntityMinecartChest['entity.MinecartChest.name'/467, l='MpServer', x=219.50, y=13.50, z=295.50], EntityChicken['Chicken'/456, l='MpServer', x=219.50, y=76.00, z=183.50], EntityChicken['Chicken'/455, l='MpServer', x=222.50, y=76.00, z=180.50], EntityChicken['Chicken'/454, l='MpServer', x=222.44, y=77.00, z=186.44], EntityItem['item.tile.gravel'/1470, l='MpServer', x=202.78, y=20.13, z=223.22], EntityItem['item.tile.gravel'/1471, l='MpServer', x=203.22, y=20.13, z=225.38], EntityFallingSand['Falling Block'/2812, l='MpServer', x=78.50, y=47.16, z=110.50], EntityItem['item.tile.sapling.oak'/1584, l='MpServer', x=201.16, y=72.13, z=291.78], EntityFallingSand['Falling Block'/2604, l='MpServer', x=61.50, y=35.61, z=207.50], EntityFallingSand['Falling Block'/2602, l='MpServer', x=61.50, y=36.61, z=205.50], EntityFallingSand['Falling Block'/2603, l='MpServer', x=61.50, y=36.61, z=206.50], EntityClientPlayerMP['Draco18s'/620, l='MpServer', x=143.50, y=65.62, z=252.50], EntityFallingSand['Falling Block'/2566, l='MpServer', x=51.50, y=7.55, z=348.50], EntityFallingSand['Falling Block'/2567, l='MpServer', x=50.50, y=7.55, z=348.50], EntityFallingSand['Falling Block'/2568, l='MpServer', x=49.50, y=7.55, z=348.50], EntityFallingSand['Falling Block'/3612, l='MpServer', x=136.50, y=4.95, z=132.50], EntityFallingSand['Falling Block'/2987, l='MpServer', x=93.50, y=4.94, z=286.50], EntityFallingSand['Falling Block'/2970, l='MpServer', x=89.50, y=53.16, z=168.50], EntityFallingSand['Falling Block'/2964, l='MpServer', x=89.50, y=17.16, z=156.50], EntityFallingSand['Falling Block'/2963, l='MpServer', x=89.50, y=17.16, z=155.50], EntityFallingSand['Falling Block'/2852, l='MpServer', x=81.50, y=46.16, z=143.50], EntityFallingSand['Falling Block'/2848, l='MpServer', x=82.50, y=47.16, z=142.50], EntityFallingSand['Falling Block'/2849, l='MpServer', x=83.50, y=47.16, z=142.50], EntityFallingSand['Falling Block'/2851, l='MpServer', x=81.50, y=47.16, z=142.50], EntityFallingSand['Falling Block'/2860, l='MpServer', x=81.50, y=45.16, z=155.50], EntityFallingSand['Falling Block'/2861, l='MpServer', x=81.50, y=45.16, z=156.50], EntityFallingSand['Falling Block'/2862, l='MpServer', x=81.50, y=44.16, z=157.50], EntityFallingSand['Falling Block'/2863, l='MpServer', x=82.50, y=44.16, z=157.50], EntityFallingSand['Falling Block'/2856, l='MpServer', x=80.50, y=30.16, z=147.50], EntityFallingSand['Falling Block'/2858, l='MpServer', x=82.50, y=23.16, z=159.50], EntityFallingSand['Falling Block'/2859, l='MpServer', x=80.50, y=44.16, z=156.50], EntityFallingSand['Falling Block'/2869, l='MpServer', x=82.50, y=44.16, z=158.50], EntityFallingSand['Falling Block'/2868, l='MpServer', x=81.50, y=44.16, z=159.50], EntityFallingSand['Falling Block'/2870, l='MpServer', x=82.50, y=44.16, z=159.50], EntityFallingSand['Falling Block'/2865, l='MpServer', x=81.50, y=44.16, z=158.50], EntityFallingSand['Falling Block'/2864, l='MpServer', x=80.50, y=44.16, z=157.50], EntityFallingSand['Falling Block'/2866, l='MpServer', x=80.50, y=44.16, z=158.50], EntityFallingSand['Falling Block'/2877, l='MpServer', x=81.50, y=14.16, z=154.50], EntityFallingSand['Falling Block'/2873, l='MpServer', x=86.50, y=16.16, z=156.50], EntityFallingSand['Falling Block'/2872, l='MpServer', x=86.50, y=16.16, z=155.50], EntityFallingSand['Falling Block'/2839, l='MpServer', x=72.50, y=23.16, z=142.50], EntityFallingSand['Falling Block'/2838, l='MpServer', x=72.50, y=23.16, z=141.50], EntityFallingSand['Falling Block'/2843, l='MpServer', x=79.50, y=44.16, z=156.50], EntityFallingSand['Falling Block'/1974, l='MpServer', x=259.50, y=8.56, z=328.50], EntityFallingSand['Falling Block'/1975, l='MpServer', x=260.50, y=8.56, z=328.50], EntityFallingSand['Falling Block'/1976, l='MpServer', x=258.50, y=8.56, z=327.50], EntityFallingSand['Falling Block'/1957, l='MpServer', x=268.50, y=21.39, z=233.50], EntityFallingSand['Falling Block'/1956, l='MpServer', x=267.50, y=21.39, z=234.50], EntityFallingSand['Falling Block'/1958, l='MpServer', x=269.50, y=21.39, z=233.50], EntityFallingSand['Falling Block'/1953, l='MpServer', x=268.50, y=21.39, z=235.50], EntityFallingSand['Falling Block'/1952, l='MpServer', x=268.50, y=21.39, z=234.50], EntityFallingSand['Falling Block'/1955, l='MpServer', x=267.50, y=21.39, z=233.50], EntityFallingSand['Falling Block'/1954, l='MpServer', x=269.50, y=21.39, z=235.50], EntityFallingSand['Falling Block'/1960, l='MpServer', x=267.50, y=20.39, z=230.50], EntityFallingSand['Falling Block'/2891, l='MpServer', x=84.50, y=30.16, z=226.50], EntityFallingSand['Falling Block'/2894, l='MpServer', x=83.50, y=30.16, z=225.50], EntityFallingSand['Falling Block'/2895, l='MpServer', x=82.50, y=30.16, z=225.50], EntityFallingSand['Falling Block'/2893, l='MpServer', x=85.50, y=30.16, z=226.50], EntityFallingSand['Falling Block'/2899, l='MpServer', x=83.50, y=30.16, z=226.50], EntityFallingSand['Falling Block'/2896, l='MpServer', x=82.50, y=30.16, z=226.50], EntityFallingSand['Falling Block'/2903, l='MpServer', x=81.50, y=30.16, z=226.50], EntityFallingSand['Falling Block'/2902, l='MpServer', x=80.50, y=29.16, z=226.50], EntityFallingSand['Falling Block'/2901, l='MpServer', x=81.50, y=30.16, z=225.50], EntityFallingSand['Falling Block'/2904, l='MpServer', x=79.50, y=56.16, z=291.50]] 2014-01-04 15:57:56 [iNFO] [sTDOUT] Retry entities: 0 total; [] 2014-01-04 15:57:56 [iNFO] [sTDOUT] Server brand: fml,forge 2014-01-04 15:57:56 [iNFO] [sTDOUT] Server type: Integrated singleplayer server 2014-01-04 15:57:56 [iNFO] [sTDOUT] Stacktrace: 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.multiplayer.WorldClient.func_72914_a(WorldClient.java:440) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_71396_d(Minecraft.java:2310) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:861) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.client.main.Main.main(SourceFile:101) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at java.lang.reflect.Method.invoke(Unknown Source) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.launch(Launch.java:57) 2014-01-04 15:57:56 [iNFO] [sTDOUT] at net.minecraft.launchwrapper.Launch.main(Launch.java:18) 2014-01-04 15:57:56 [iNFO] [sTDOUT] 2014-01-04 15:57:56 [iNFO] [sTDOUT] -- System Details -- 2014-01-04 15:57:56 [iNFO] [sTDOUT] Details: 2014-01-04 15:57:56 [iNFO] [sTDOUT] Minecraft Version: 1.6.2 2014-01-04 15:57:56 [iNFO] [sTDOUT] Operating System: Windows 7 (x86) version 6.1 2014-01-04 15:57:56 [iNFO] [sTDOUT] Java Version: 1.7.0_45, Oracle Corporation 2014-01-04 15:57:56 [iNFO] [sTDOUT] Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation 2014-01-04 15:57:56 [iNFO] [sTDOUT] Memory: 339101896 bytes (323 MB) / 519110656 bytes (495 MB) up to 1037959168 bytes (989 MB) 2014-01-04 15:57:56 [iNFO] [sTDOUT] JVM Flags: 3 total; -Xms512m -Xmx1024m -XX:PermSize=64m 2014-01-04 15:57:56 [iNFO] [sTDOUT] AABB Pool Size: 13542 (758352 bytes; 0 MB) allocated, 2 (112 bytes; 0 MB) used 2014-01-04 15:57:56 [iNFO] [sTDOUT] Suspicious classes: FML and Forge are installed 2014-01-04 15:57:56 [iNFO] [sTDOUT] IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 63 2014-01-04 15:57:56 [iNFO] [sTDOUT] FML: MCP v8.04 FML v6.2.62.871 Minecraft Forge 9.10.1.871 4 mods loaded, 4 mods active 2014-01-04 15:57:56 [iNFO] [sTDOUT] mcp{8.04} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available 2014-01-04 15:57:56 [iNFO] [sTDOUT] FML{6.2.62.871} [Forge Mod Loader] (minecraftforge-9.10.1.871.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available 2014-01-04 15:57:56 [iNFO] [sTDOUT] Forge{9.10.1.871} [Minecraft Forge] (minecraftforge-9.10.1.871.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available 2014-01-04 15:57:56 [iNFO] [sTDOUT] Specialized Maps{2.0.0} [More Maps] (Maps-Forge871.zip) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available 2014-01-04 15:57:56 [iNFO] [sTDOUT] Launched Version: 1.6.2 2014-01-04 15:57:56 [iNFO] [sTDOUT] LWJGL: 2.9.0 2014-01-04 15:57:56 [iNFO] [sTDOUT] OpenGL: ATI Radeon HD 5570 GL version 4.2.11566 Compatibility Profile Context, ATI Technologies Inc. 2014-01-04 15:57:56 [iNFO] [sTDOUT] Is Modded: Definitely; Client brand changed to 'fml,forge' 2014-01-04 15:57:56 [iNFO] [sTDOUT] Type: Client (map_client.txt) 2014-01-04 15:57:56 [iNFO] [sTDOUT] Resource Pack: Default 2014-01-04 15:57:56 [iNFO] [sTDOUT] Current Language: English (US) 2014-01-04 15:57:56 [iNFO] [sTDOUT] Profiler Position: N/A (disabled) 2014-01-04 15:57:56 [iNFO] [sTDOUT] Vec3 Pool Size: 2070 (115920 bytes; 0 MB) allocated, 14 (784 bytes; 0 MB) used 2014-01-04 15:57:56 [iNFO] [sTDOUT] #@!@# Game crashed! Crash report saved to: #@!@# Z:\Users\Major\Desktop\Minecraft Tools\MultiMC 5\instances\162\minecraft\crash-reports\crash-2014-01-04_15.57.56-client.txt [/spoiler]
  8. I like the "random skin" effect. It makes me chuckle when I end up with one.
  9. Yes, but it doesn't hinge on updating Forge.
  10. Caused by: java.lang.ArrayIndexOutOfBoundsException: 6005 Your block ID is too high. Make it 4095 or lower.
  11. Your code would function exactly as desired.
  12. updateTick() And updateTick is only random if you have random ticks enabled. You can also use onNeighborBlockChanged. The answer to your question actually depends on the answer to another question: When are you changing the metadata?
  13. NBTdata is just key->value data storage that is automatically saved to disc when the game is shut down (or the chunk is unloaded, etc.) NBTdata can hold any simple data type (int, double, float, string, etc.) including arrays (int array, etc.), as well as NBT tags and NBT tag lists (an array of NBT tags) I believe the key name is required to be a string, but other than that, you're free to go hogwild. For example, I have one mod that stores item functionality in NBT data, so that the mod can hold millions (probably several hundred million at this point) of items in a single item ID (actually, 21, due to armor slot/material combinations required to be paired at construction). Then I have another mod that stores image data as arrays of integers.
  14. It'll also let you know when the function your trying to use doesn't match the function that exists. Like I saw one guy do: getIcon (init pass, IconRegister register) { } Because I told him he needed to register, then return, a second icon.
  15. The mcmod.info file goes insize your compiled zip, after you reobfuscate. It doesn't do jack diddly squat inside your eclipse project AFAIK.
  16. Ignore the imports. Fix the actual code and then do the imports using Eclipse (ctrl+shift+O)
  17. /resources/[same/path/as/1.6.4]
  18. "Standing still" is the lack of code. You don't have to do a damn thing to get something to stay still. Turning around is controlled by an AI task, I believe its called EntityAITaskLookAt or something similar.
  19. The setPotionEffect on food items is a "this item will apply this potion to the entity that eats it." The food itself is not afflicted with the potion effect.
  20. Do you know where textures go in 1.6.4? You need to do the same thing in 1.7, only now it's inside that resources folder. You can't just stick textures any old place and expect Minecraft to find them with magic.
  21. What are you trying to do? Why are you trying to read another mod's source code? What is your goal?
  22. Check the zip file's construction. Make sure that it has the correct folder structure; the most common reason for this crash is that your mod wasn't zipped correctly.
×
×
  • Create New...

Important Information

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