Jump to content

[1.8] Error: Needed to grow BufferBuilder buffer -- Is this memory leak?


Recommended Posts

Posted

On another thread I came up with a way to send information about all the possible item stacks back to the server (since only client generally knows all the available valid subtypes). This could be useful for example if you want to give random items to a player.

 

Anyway, the approach is pretty simple. If the server hasn't asked before, it will send a message that requests the information to all clients. The clients then respond with a message containing the IDs, valid meta data values, and any client-side NBT (some mods like Tinker's Construct seem to distinguish subtypes with NBT instead of metadata).

 

The messages seem to work well and are implemented pretty straight-forward using the simple network wrapper. For the server-side messages I use a scheduled task to avoid thread concurrent modification issues.

 

Anyway, the scheme works except it can give the following error:

[Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.

 

To me that seems like some sort of memory leak. I am reading and writing to buffers, however I don't create any new buffers -- I just operate on the message payload buffers (PacketBuffer) passed into the fromBytes and toBytes methods. So I don't think I should need to release the buffers since I assume the networking stack does it elsewhere.

 

Anyway, I don't know where to look next. Any pointers would be appreciated.

 

Here is the full console log:

 

[08:28:23] [main/INFO] [GradleStart]: userProperties: {}

[08:28:23] [main/INFO] [GradleStart]: accessToken: accessToken

[08:28:23] [main/INFO] [GradleStart]: assetIndex: 1.8

[08:28:23] [main/INFO] [GradleStart]: assetsDir: C:/Users/Aaron/.gradle/caches/minecraft/assets

[08:28:23] [main/INFO] [GradleStart]: version: 1.7

[08:28:23] [main/INFO] [GradleStart]: Extra: [--tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker]

[08:28:23] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.8, --assetsDir, C:/Users/Aaron/.gradle/caches/minecraft/assets, --version, 1.7, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]

[08:28:23] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[08:28:24] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[08:28:24] [main/WARN] [LaunchWrapper]: Tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker has already been visited -- skipping

[08:28:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

[08:28:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker

[08:28:24] [main/INFO] [FML]: Forge Mod Loader version 8.99.205.1502 for Minecraft 1.8 loading

[08:28:24] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_51, running on Windows 8:amd64:6.2, installed at E:\Program Files\Java\jdk1.7.0_51\jre

[08:28:24] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[08:28:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[08:28:24] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[08:28:24] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[08:28:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[08:28:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[08:28:24] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[08:28:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[08:28:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[08:28:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[08:28:24] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[08:28:26] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[08:28:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[08:28:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[08:28:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[08:28:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[08:28:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[08:28:27] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[08:28:27] [Client thread/INFO]: Setting user: Player344

[08:28:29] [Client thread/INFO]: LWJGL Version: 2.9.1

[08:28:30] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:235]: ---- Minecraft Crash Report ----

// Ouch. That hurt :(

 

Time: 8/17/15 8:28 AM

Description: Loading screen debug info

 

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR

 

 

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

---------------------------------------------------------------------------------------

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 8 (amd64) version 6.2

Java Version: 1.7.0_51, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 3211718008 bytes (3062 MB) / 4116709376 bytes (3926 MB) up to 4116709376 bytes (3926 MB)

JVM Flags: 2 total; -Xmx4G -Xms4G

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML:

Loaded coremods (and transformers):

GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 355.60' Renderer: 'GeForce GTX 760/PCIe/SSE2'

[08:28:30] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[08:28:30] [Client thread/INFO] [FML]: MinecraftForge v11.14.3.1502 Initialized

[08:28:30] [Client thread/INFO] [FML]: Replaced 204 ore recipies

[08:28:30] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[08:28:31] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer

[08:28:31] [Client thread/INFO] [FML]: Searching E:\ModdingWorkspace\run\mods for mods

[08:28:32] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load

[08:28:33] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, blocksmith] at CLIENT

[08:28:33] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, blocksmith] at SERVER

[08:28:33] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.blocks.BlockTanningRack:<init>:59]: BlockTanningRack constructor

[08:28:33] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Block Smith

[08:28:33] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[08:28:34] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations

[08:28:34] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations

[08:28:34] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations

[08:28:34] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.BlockSmith:fmlLifeCycleEvent:156]: preInit()Block Smith

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.ClientProxy:fmlLifeCycleEvent:67]: on Client side

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:initConfig:211]: Block Smith config path = E:\ModdingWorkspace\run\config\blocksmith.cfg

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:initConfig:212]: Config file exists = true

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:syncConfig:228]: Allow unrealistic deconstruction = false

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:syncConfig:231]: Allow horse armor crafting = true

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:syncConfig:234]: Allow enchanted book deconstruction = true

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:syncConfig:237]: Allow partial deconstruction = false

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerItems:280]: Registering items

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerTileEntities:295]: Registering tile entities

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerModEntities:374]: Registering entities

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.items.SpawnEgg:<init>:79]: Spawn egg constructor for Test Pig with unlocalized name item.spawn_egg_Test Pig

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerEntitySpawns:436]: Registering natural spawns

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerFuelHandlers:466]: Registering fuel handlers

[08:28:34] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerSimpleNetworking:177]: registering simple networking

[08:28:34] [Client thread/INFO] [FML]: Applying holder lookups

[08:28:34] [Client thread/INFO] [FML]: Holder lookups applied

[08:28:34] [Client thread/INFO] [FML]: Injecting itemstacks

[08:28:34] [Client thread/INFO] [FML]: Itemstack injection complete

[08:28:34] [sound Library Loader/INFO]: Starting up SoundSystem...

[08:28:34] [Thread-9/INFO]: Initializing LWJGL OpenAL

[08:28:34] [Thread-9/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[08:28:34] [Thread-9/INFO]: OpenAL initialized.

[08:28:35] [sound Library Loader/INFO]: Sound engine started

[08:28:37] [Client thread/INFO] [FML]: Max texture size: 16384

[08:28:37] [Client thread/INFO]: Created: 16x16 textures-atlas

[08:28:38] [Client thread/ERROR] [FML]: Model definition for location blocksmith:spawn_egg_Test Pig#inventory not found

[08:28:38] [Client thread/ERROR] [FML]: Model definition for location blocksmith:swordExtended#inventory not found

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.BlockSmith:fmlLifeCycleEvent:176]: init()

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.ClientProxy:fmlLifeCycleEvent:78]: on Client side

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerEventListeners:477]: Registering event listeners

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:registerRecipes:310]: Registering recipes

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.ClientProxy:registerItemRenderers:153]: Registering item renderers

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.ClientProxy:registerBlockRenderers:173]: Registering block renderers

[08:28:38] [Client thread/INFO] [FML]: Injecting itemstacks

[08:28:38] [Client thread/INFO] [FML]: Itemstack injection complete

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.BlockSmith:fmlLifeCycle:186]: postInit()

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.ClientProxy:fmlLifeCycleEvent:107]: on Client side

[08:28:38] [Client thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.ClientProxy:initItemStackRegistry:260]: ItemStack registry = [1xtile.stone@0, 1xtile.stone@1, 1xtile.stone@2, 1xtile.stone@3, 1xtile.stone@4, 1xtile.stone@5, 1xtile.stone@6, 1xtile.grass@0, 1xtile.dirt@0, 1xtile.dirt@1, 1xtile.dirt@2, 1xtile.stonebrick@0, 1xtile.wood@0, 1xtile.wood@1, 1xtile.wood@2, 1xtile.wood@3, 1xtile.wood@4, 1xtile.wood@5, 1xtile.sapling@0, 1xtile.sapling@1, 1xtile.sapling@2, 1xtile.sapling@3, 1xtile.sapling@4, 1xtile.sapling@5, 1xtile.bedrock@0, 1xtile.sand@0, 1xtile.sand@1, 1xtile.gravel@0, 1xtile.oreGold@0, 1xtile.oreIron@0, 1xtile.oreCoal@0, 1xtile.log@0, 1xtile.log@1, 1xtile.log@2, 1xtile.log@3, 1xtile.leaves@0, 1xtile.leaves@1, 1xtile.leaves@2, 1xtile.leaves@3, 1xtile.sponge@0, 1xtile.sponge@1, 1xtile.glass@0, 1xtile.oreLapis@0, 1xtile.blockLapis@0, 1xtile.dispenser@0, 1xtile.sandStone@0, 1xtile.sandStone@1, 1xtile.sandStone@2, 1xtile.musicBlock@0, 1xtile.goldenRail@0, 1xtile.detectorRail@0, 1xtile.pistonStickyBase@0, 1xtile.web@0, 1xtile.tallgrass@1, 1xtile.tallgrass@2, 1xtile.deadbush@0, 1xtile.pistonBase@0, 1xtile.cloth@0, 1xtile.cloth@1, 1xtile.cloth@2, 1xtile.cloth@3, 1xtile.cloth@4, 1xtile.cloth@5, 1xtile.cloth@6, 1xtile.cloth@7, 1xtile.cloth@8, 1xtile.cloth@9, 1xtile.cloth@10, 1xtile.cloth@11, 1xtile.cloth@12, 1xtile.cloth@13, 1xtile.cloth@14, 1xtile.cloth@15, 1xtile.flower1@0, 1xtile.flower2@0, 1xtile.flower2@1, 1xtile.flower2@2, 1xtile.flower2@3, 1xtile.flower2@4, 1xtile.flower2@5, 1xtile.flower2@6, 1xtile.flower2@7, 1xtile.flower2@8, 1xtile.mushroom@0, 1xtile.mushroom@0, 1xtile.blockGold@0, 1xtile.blockIron@0, 1xtile.stoneSlab@0, 1xtile.stoneSlab@1, 1xtile.stoneSlab@3, 1xtile.stoneSlab@4, 1xtile.stoneSlab@5, 1xtile.stoneSlab@6, 1xtile.stoneSlab@7, 1xtile.brick@0, 1xtile.tnt@0, 1xtile.bookshelf@0, 1xtile.stoneMoss@0, 1xtile.obsidian@0, 1xtile.torch@0, 1xtile.mobSpawner@0, 1xtile.stairsWood@0, 1xtile.chest@0, 1xtile.oreDiamond@0, 1xtile.blockDiamond@0, 1xtile.workbench@0, 1xtile.farmland@0, 1xtile.furnace@0, 1xtile.furnace@0, 1xtile.ladder@0, 1xtile.rail@0, 1xtile.stairsStone@0, 1xtile.lever@0, 1xtile.pressurePlateStone@0, 1xtile.pressurePlateWood@0, 1xtile.oreRedstone@0, 1xtile.notGate@0, 1xtile.button@0, 1xtile.snow@0, 1xtile.ice@0, 1xtile.snow@0, 1xtile.cactus@0, 1xtile.clay@0, 1xtile.jukebox@0, 1xtile.fence@0, 1xtile.pumpkin@0, 1xtile.hellrock@0, 1xtile.hellsand@0, 1xtile.lightgem@0, 1xtile.litpumpkin@0, 1xtile.stainedGlass@0, 1xtile.stainedGlass@1, 1xtile.stainedGlass@2, 1xtile.stainedGlass@3, 1xtile.stainedGlass@4, 1xtile.stainedGlass@5, 1xtile.stainedGlass@6, 1xtile.stainedGlass@7, 1xtile.stainedGlass@8, 1xtile.stainedGlass@9, 1xtile.stainedGlass@10, 1xtile.stainedGlass@11, 1xtile.stainedGlass@12, 1xtile.stainedGlass@13, 1xtile.stainedGlass@14, 1xtile.stainedGlass@15, 1xtile.trapdoor@0, 1xtile.monsterStoneEgg@0, 1xtile.monsterStoneEgg@1, 1xtile.monsterStoneEgg@2, 1xtile.monsterStoneEgg@3, 1xtile.monsterStoneEgg@4, 1xtile.monsterStoneEgg@5, 1xtile.stonebricksmooth@0, 1xtile.stonebricksmooth@1, 1xtile.stonebricksmooth@2, 1xtile.stonebricksmooth@3, 1xtile.mushroom@0, 1xtile.mushroom@0, 1xtile.fenceIron@0, 1xtile.thinGlass@0, 1xtile.melon@0, 1xtile.vine@0, 1xtile.fenceGate@0, 1xtile.stairsBrick@0, 1xtile.stairsStoneBrickSmooth@0, 1xtile.mycel@0, 1xtile.waterlily@0, 1xtile.netherBrick@0, 1xtile.netherFence@0, 1xtile.stairsNetherBrick@0, 1xtile.enchantmentTable@0, 1xtile.endPortalFrame@0, 1xtile.whiteStone@0, 1xtile.dragonEgg@0, 1xtile.redstoneLight@0, 1xtile.woodSlab@0, 1xtile.woodSlab@1, 1xtile.woodSlab@2, 1xtile.woodSlab@3, 1xtile.woodSlab@4, 1xtile.woodSlab@5, 1xtile.stairsSandStone@0, 1xtile.oreEmerald@0, 1xtile.enderChest@0, 1xtile.tripWireSource@0, 1xtile.blockEmerald@0, 1xtile.stairsWoodSpruce@0, 1xtile.stairsWoodBirch@0, 1xtile.stairsWoodJungle@0, 1xtile.commandBlock@0, 1xtile.beacon@0, 1xtile.cobbleWall@0, 1xtile.cobbleWall@1, 1xtile.button@0, 1xtile.anvil@0, 1xtile.anvil@1, 1xtile.anvil@2, 1xtile.chestTrap@0, 1xtile.weightedPlate_light@0, 1xtile.weightedPlate_heavy@0, 1xtile.daylightDetector@0, 1xtile.blockRedstone@0, 1xtile.netherquartz@0, 1xtile.hopper@0, 1xtile.quartzBlock@0, 1xtile.quartzBlock@1, 1xtile.quartzBlock@2, 1xtile.stairsQuartz@0, 1xtile.activatorRail@0, 1xtile.dropper@0, 1xtile.clayHardenedStained@0, 1xtile.clayHardenedStained@1, 1xtile.clayHardenedStained@2, 1xtile.clayHardenedStained@3, 1xtile.clayHardenedStained@4, 1xtile.clayHardenedStained@5, 1xtile.clayHardenedStained@6, 1xtile.clayHardenedStained@7, 1xtile.clayHardenedStained@8, 1xtile.clayHardenedStained@9, 1xtile.clayHardenedStained@10, 1xtile.clayHardenedStained@11, 1xtile.clayHardenedStained@12, 1xtile.clayHardenedStained@13, 1xtile.clayHardenedStained@14, 1xtile.clayHardenedStained@15, 1xtile.thinStainedGlass@0, 1xtile.thinStainedGlass@1, 1xtile.thinStainedGlass@2, 1xtile.thinStainedGlass@3, 1xtile.thinStainedGlass@4, 1xtile.thinStainedGlass@5, 1xtile.thinStainedGlass@6, 1xtile.thinStainedGlass@7, 1xtile.thinStainedGlass@8, 1xtile.thinStainedGlass@9, 1xtile.thinStainedGlass@10, 1xtile.thinStainedGlass@11, 1xtile.thinStainedGlass@12, 1xtile.thinStainedGlass@13, 1xtile.thinStainedGlass@14, 1xtile.thinStainedGlass@15, 1xtile.leaves@0, 1xtile.leaves@1, 1xtile.log@0, 1xtile.log@1, 1xtile.stairsWoodAcacia@0, 1xtile.stairsWoodDarkOak@0, 1xtile.slime@0, 1xtile.barrier@0, 1xtile.ironTrapdoor@0, 1xtile.prismarine@0, 1xtile.prismarine@1, 1xtile.prismarine@2, 1xtile.seaLantern@0, 1xtile.hayBlock@0, 1xtile.woolCarpet@0, 1xtile.woolCarpet@1, 1xtile.woolCarpet@2, 1xtile.woolCarpet@3, 1xtile.woolCarpet@4, 1xtile.woolCarpet@5, 1xtile.woolCarpet@6, 1xtile.woolCarpet@7, 1xtile.woolCarpet@8, 1xtile.woolCarpet@9, 1xtile.woolCarpet@10, 1xtile.woolCarpet@11, 1xtile.woolCarpet@12, 1xtile.woolCarpet@13, 1xtile.woolCarpet@14, 1xtile.woolCarpet@15, 1xtile.clayHardened@0, 1xtile.blockCoal@0, 1xtile.icePacked@0, 1xtile.doublePlant@0, 1xtile.doublePlant@1, 1xtile.doublePlant@2, 1xtile.doublePlant@3, 1xtile.doublePlant@4, 1xtile.doublePlant@5, 1xtile.redSandStone@0, 1xtile.redSandStone@1, 1xtile.redSandStone@2, 1xtile.stairsRedSandStone@0, 1xtile.stoneSlab2@0, 1xtile.spruceFenceGate@0, 1xtile.birchFenceGate@0, 1xtile.jungleFenceGate@0, 1xtile.darkOakFenceGate@0, 1xtile.acaciaFenceGate@0, 1xtile.spruceFence@0, 1xtile.birchFence@0, 1xtile.jungleFence@0, 1xtile.darkOakFence@0, 1xtile.acaciaFence@0, 1xtile.tanningrack@0, 1xtile.grinder@0, 1xtile.compactor@0, 1xtile.deconstructor@0, 1xtile.forge@0, 1xtile.movinglightsource@0, 1xitem.shovelIron@0, 1xitem.pickaxeIron@0, 1xitem.hatchetIron@0, 1xitem.flintAndSteel@0, 1xitem.apple@0, 1xitem.bow@0, 1xitem.arrow@0, 1xitem.coal@0, 1xitem.coal@1, 1xitem.diamond@0, 1xitem.ingotIron@0, 1xitem.ingotGold@0, 1xitem.swordIron@0, 1xitem.swordWood@0, 1xitem.shovelWood@0, 1xitem.pickaxeWood@0, 1xitem.hatchetWood@0, 1xitem.swordStone@0, 1xitem.shovelStone@0, 1xitem.pickaxeStone@0, 1xitem.hatchetStone@0, 1xitem.swordDiamond@0, 1xitem.shovelDiamond@0, 1xitem.pickaxeDiamond@0, 1xitem.hatchetDiamond@0, 1xitem.stick@0, 1xitem.bowl@0, 1xitem.mushroomStew@0, 1xitem.swordGold@0, 1xitem.shovelGold@0, 1xitem.pickaxeGold@0, 1xitem.hatchetGold@0, 1xitem.string@0, 1xitem.feather@0, 1xitem.sulphur@0, 1xitem.hoeWood@0, 1xitem.hoeStone@0, 1xitem.hoeIron@0, 1xitem.hoeDiamond@0, 1xitem.hoeGold@0, 1xitem.seeds@0, 1xitem.wheat@0, 1xitem.bread@0, 1xitem.helmetCloth@0, 1xitem.chestplateCloth@0, 1xitem.leggingsCloth@0, 1xitem.bootsCloth@0, 1xitem.helmetChain@0, 1xitem.chestplateChain@0, 1xitem.leggingsChain@0, 1xitem.bootsChain@0, 1xitem.helmetIron@0, 1xitem.chestplateIron@0, 1xitem.leggingsIron@0, 1xitem.bootsIron@0, 1xitem.helmetDiamond@0, 1xitem.chestplateDiamond@0, 1xitem.leggingsDiamond@0, 1xitem.bootsDiamond@0, 1xitem.helmetGold@0, 1xitem.chestplateGold@0, 1xitem.leggingsGold@0, 1xitem.bootsGold@0, 1xitem.flint@0, 1xitem.porkchopRaw@0, 1xitem.porkchopCooked@0, 1xitem.painting@0, 1xitem.appleGold@0, 1xitem.appleGold@1, 1xitem.sign@0, 1xitem.doorOak@0, 1xitem.bucket@0, 1xitem.bucketWater@0, 1xitem.bucketLava@0, 1xitem.minecart@0, 1xitem.saddle@0, 1xitem.doorIron@0, 1xitem.redstone@0, 1xitem.snowball@0, 1xitem.boat@0, 1xitem.leather@0, 1xitem.milk@0, 1xitem.brick@0, 1xitem.clay@0, 1xitem.reeds@0, 1xitem.paper@0, 1xitem.book@0, 1xitem.slimeball@0, 1xitem.minecartChest@0, 1xitem.minecartFurnace@0, 1xitem.egg@0, 1xitem.compass@0, 1xitem.fishingRod@0, 1xitem.clock@0, 1xitem.yellowDust@0, 1xitem.fish@0, 1xitem.fish@1, 1xitem.fish@2, 1xitem.fish@3, 1xitem.fish@0, 1xitem.fish@1, 1xitem.dyePowder@0, 1xitem.dyePowder@1, 1xitem.dyePowder@2, 1xitem.dyePowder@3, 1xitem.dyePowder@4, 1xitem.dyePowder@5, 1xitem.dyePowder@6, 1xitem.dyePowder@7, 1xitem.dyePowder@8, 1xitem.dyePowder@9, 1xitem.dyePowder@10, 1xitem.dyePowder@11, 1xitem.dyePowder@12, 1xitem.dyePowder@13, 1xitem.dyePowder@14, 1xitem.dyePowder@15, 1xitem.bone@0, 1xitem.sugar@0, 1xitem.cake@0, 1xitem.bed@0, 1xitem.diode@0, 1xitem.cookie@0, 1xitem.map@0, 1xitem.shears@0, 1xitem.melon@0, 1xitem.seeds_pumpkin@0, 1xitem.seeds_melon@0, 1xitem.beefRaw@0, 1xitem.beefCooked@0, 1xitem.chickenRaw@0, 1xitem.chickenCooked@0, 1xitem.rottenFlesh@0, 1xitem.enderPearl@0, 1xitem.blazeRod@0, 1xitem.ghastTear@0, 1xitem.goldNugget@0, 1xitem.netherStalkSeeds@0, 1xitem.potion@0, 1xitem.potion@8193, 1xitem.potion@8225, 1xitem.potion@8257, 1xitem.potion@16385, 1xitem.potion@16417, 1xitem.potion@16449, 1xitem.potion@8194, 1xitem.potion@8226, 1xitem.potion@8258, 1xitem.potion@16386, 1xitem.potion@16418, 1xitem.potion@16450, 1xitem.potion@8227, 1xitem.potion@8259, 1xitem.potion@16419, 1xitem.potion@16451, 1xitem.potion@8196, 1xitem.potion@8228, 1xitem.potion@8260, 1xitem.potion@16388, 1xitem.potion@16420, 1xitem.potion@16452, 1xitem.potion@8261, 1xitem.potion@8229, 1xitem.potion@16453, 1xitem.potion@16421, 1xitem.potion@8230, 1xitem.potion@8262, 1xitem.potion@16422, 1xitem.potion@16454, 1xitem.potion@8232, 1xitem.potion@8264, 1xitem.potion@16424, 1xitem.potion@16456, 1xitem.potion@8201, 1xitem.potion@8233, 1xitem.potion@8265, 1xitem.potion@16393, 1xitem.potion@16425, 1xitem.potion@16457, 1xitem.potion@8234, 1xitem.potion@8266, 1xitem.potion@16426, 1xitem.potion@16458, 1xitem.potion@8267, 1xitem.potion@8235, 1xitem.potion@16459, 1xitem.potion@16427, 1xitem.potion@8268, 1xitem.potion@8236, 1xitem.potion@16460, 1xitem.potion@16428, 1xitem.potion@8237, 1xitem.potion@8269, 1xitem.potion@16429, 1xitem.potion@16461, 1xitem.potion@8238, 1xitem.potion@8270, 1xitem.potion@16430, 1xitem.potion@16462, 1xitem.glassBottle@0, 1xitem.spiderEye@0, 1xitem.fermentedSpiderEye@0, 1xitem.blazePowder@0, 1xitem.magmaCream@0, 1xitem.brewingStand@0, 1xitem.cauldron@0, 1xitem.eyeOfEnder@0, 1xitem.speckledMelon@0, 1xitem.monsterPlacer@50, 1xitem.monsterPlacer@51, 1xitem.monsterPlacer@52, 1xitem.monsterPlacer@54, 1xitem.monsterPlacer@55, 1xitem.monsterPlacer@56, 1xitem.monsterPlacer@57, 1xitem.monsterPlacer@58, 1xitem.monsterPlacer@59, 1xitem.monsterPlacer@60, 1xitem.monsterPlacer@61, 1xitem.monsterPlacer@62, 1xitem.monsterPlacer@65, 1xitem.monsterPlacer@66, 1xitem.monsterPlacer@67, 1xitem.monsterPlacer@68, 1xitem.monsterPlacer@90, 1xitem.monsterPlacer@91, 1xitem.monsterPlacer@92, 1xitem.monsterPlacer@93, 1xitem.monsterPlacer@94, 1xitem.monsterPlacer@95, 1xitem.monsterPlacer@96, 1xitem.monsterPlacer@98, 1xitem.monsterPlacer@100, 1xitem.monsterPlacer@101, 1xitem.monsterPlacer@120, 1xitem.expBottle@0, 1xitem.fireball@0, 1xitem.writingBook@0, 1xitem.writtenBook@0, 1xitem.emerald@0, 1xitem.frame@0, 1xitem.flowerPot@0, 1xitem.carrots@0, 1xitem.potato@0, 1xitem.potatoBaked@0, 1xitem.potatoPoisonous@0, 1xitem.emptyMap@0, 1xitem.carrotGolden@0, 1xitem.skull@0, 1xitem.skull@1, 1xitem.skull@2, 1xitem.skull@3, 1xitem.skull@4, 1xitem.carrotOnAStick@0, 1xitem.netherStar@0, 1xitem.pumpkinPie@0, 1xitem.fireworks@0, 1xitem.fireworksCharge@0, 1xitem.enchantedBook@0, 1xitem.comparator@0, 1xitem.netherbrick@0, 1xitem.netherquartz@0, 1xitem.minecartTnt@0, 1xitem.minecartHopper@0, 1xitem.prismarineShard@0, 1xitem.prismarineCrystals@0, 1xitem.rabbitRaw@0, 1xitem.rabbitCooked@0, 1xitem.rabbitStew@0, 1xitem.rabbitFoot@0, 1xitem.rabbitHide@0, 1xitem.armorStand@0, 1xitem.horsearmormetal@0, 1xitem.horsearmorgold@0, 1xitem.horsearmordiamond@0, 1xitem.leash@0, 1xitem.nameTag@0, 1xitem.minecartCommandBlock@0, 1xitem.muttonRaw@0, 1xitem.muttonCooked@0, 1xtile.banner@15, 1xtile.banner@14, 1xtile.banner@13, 1xtile.banner@12, 1xtile.banner@11, 1xtile.banner@10, 1xtile.banner@9, 1xtile.banner@8, 1xtile.banner@7, 1xtile.banner@6, 1xtile.banner@5, 1xtile.banner@4, 1xtile.banner@3, 1xtile.banner@2, 1xtile.banner@1, 1xtile.banner@0, 1xitem.doorSpruce@0, 1xitem.doorBirch@0, 1xitem.doorJungle@0, 1xitem.doorAcacia@0, 1xitem.doorDarkOak@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.cowhide@0, 1xitem.sheepskin@0, 1xitem.pigskin@0, 1xitem.horsehide@0, 1xitem.swordExtended@0, 1xitem.spawn_egg_Test Pig@0]

[08:28:38] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

[08:28:38] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Block Smith

[08:28:38] [Client thread/INFO]: SoundSystem shutting down...

[08:28:38] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[08:28:38] [sound Library Loader/INFO]: Starting up SoundSystem...

[08:28:39] [Thread-11/INFO]: Initializing LWJGL OpenAL

[08:28:39] [Thread-11/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[08:28:39] [Thread-11/INFO]: OpenAL initialized.

[08:28:39] [sound Library Loader/INFO]: Sound engine started

[08:28:39] [Version Check/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.VersionChecker:run:71]: Latest mod version = 1.0.0

[08:28:39] [Version Check/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.VersionChecker:run:73]: Are you running latest version = true

[08:28:41] [Client thread/INFO] [FML]: Max texture size: 16384

[08:28:42] [Client thread/INFO]: Created: 512x512 textures-atlas

[08:28:42] [Client thread/ERROR] [FML]: Model definition for location blocksmith:spawn_egg_Test Pig#inventory not found

[08:28:42] [Client thread/ERROR] [FML]: Model definition for location blocksmith:swordExtended#inventory not found

[08:28:47] [server thread/INFO]: Starting integrated minecraft server version 1.8

[08:28:47] [server thread/INFO]: Generating keypair

[08:28:47] [server thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.BlockSmith:fmlLifeCycle:195]: Server about to start

[08:28:47] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[08:28:47] [server thread/INFO] [FML]: Applying holder lookups

[08:28:47] [server thread/INFO] [FML]: Holder lookups applied

[08:28:47] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@50e927cf)

[08:28:47] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@50e927cf)

[08:28:47] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@50e927cf)

[08:28:47] [server thread/INFO]: Preparing start region for level 0

[08:28:48] [server thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.BlockSmith:fmlLifeCycle:206]: Server starting

[08:28:48] [server thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.BlockSmith:fmlLifeCycle:215]: Server started

[08:28:49] [server thread/INFO]: Changing view distance to 12, from 10

[08:28:49] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2

[08:28:49] [Netty Server IO #1/INFO] [FML]: Client protocol version 2

[08:28:49] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

[08:28:49] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established

[08:28:49] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[08:28:49] [server thread/INFO]: Player344[local:E:f2a01ea0] logged in with entity id 291 at (-65.5, 65.0, 250.5)

[08:28:49] [server thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.EventHandler:onEvent:292]: NameFormat event for username = Player344

[08:28:49] [server thread/INFO]: Player344 the Ugly joined the game

[08:28:50] [server thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageRequestItemStackRegistryFromClient:<init>:34]: constructor

[08:28:50] [server thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageRequestItemStackRegistryFromClient:toBytes:48]: toBytes encoded

[08:28:50] [server thread/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.FMLEventHandler:onEvent:177]: Giving a gift = 1xtile.stonebricksmooth@1

[08:28:50] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@264178ee[id=337a131b-860d-346e-a281-649e07daeae5,name=Player344,properties={},legacy=false]

com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time

at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:65) ~[YggdrasilAuthenticationService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:158) [YggdrasilMinecraftSessionService.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:53) [YggdrasilMinecraftSessionService$1.class:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:50) [YggdrasilMinecraftSessionService$1.class:?]

at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3524) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2317) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2280) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2195) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.get(LocalCache.java:3934) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:3938) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:4821) [guava-17.0.jar:?]

at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:4827) [guava-17.0.jar:?]

at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:148) [YggdrasilMinecraftSessionService.class:?]

at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [skinManager$3.class:?]

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471) [?:1.7.0_51]

at java.util.concurrent.FutureTask.run(FutureTask.java:262) [?:1.7.0_51]

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) [?:1.7.0_51]

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) [?:1.7.0_51]

at java.lang.Thread.run(Thread.java:744) [?:1.7.0_51]

[08:28:50] [Netty Local Client IO #0/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageRequestItemStackRegistryFromClient:<init>:34]: constructor

[08:28:50] [Netty Local Client IO #0/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageRequestItemStackRegistryFromClient:fromBytes:41]: fromBytes

[08:28:50] [Netty Local Client IO #0/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageRequestItemStackRegistryFromClient$Handler:onMessage:57]: message received

[08:28:50] [Netty Local Client IO #0/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageSendItemStackRegistryToServer:<init>:38]: Constructor

[08:28:50] [Netty Local Client IO #0/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageSendItemStackRegistryToServer:toBytes:45]: toBytes encoded

[08:28:50] [Netty Local Client IO #0/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:convertItemStackListToPayload:549]: The stack 1xitem.sheepskin@0 has NBT = {TargetLock:"test",}

[08:28:50] [Netty Server IO #1/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageSendItemStackRegistryToServer:<init>:38]: Constructor

[08:28:50] [Netty Server IO #1/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageSendItemStackRegistryToServer:fromBytes:53]: fromBytes

[08:28:50] [Netty Server IO #1/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:convertPayloadToItemStackList:581]: The stack 1xitem.sheepskin@0 has NBT = {TargetLock:"test",}

[08:28:50] [Netty Server IO #1/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.proxy.CommonProxy:convertPayloadToItemStackList:588]: [1xtile.stone@0, 1xtile.stone@1, 1xtile.stone@2, 1xtile.stone@3, 1xtile.stone@4, 1xtile.stone@5, 1xtile.stone@6, 1xtile.grass@0, 1xtile.dirt@0, 1xtile.dirt@1, 1xtile.dirt@2, 1xtile.stonebrick@0, 1xtile.wood@0, 1xtile.wood@1, 1xtile.wood@2, 1xtile.wood@3, 1xtile.wood@4, 1xtile.wood@5, 1xtile.sapling@0, 1xtile.sapling@1, 1xtile.sapling@2, 1xtile.sapling@3, 1xtile.sapling@4, 1xtile.sapling@5, 1xtile.bedrock@0, 1xtile.sand@0, 1xtile.sand@1, 1xtile.gravel@0, 1xtile.oreGold@0, 1xtile.oreIron@0, 1xtile.oreCoal@0, 1xtile.log@0, 1xtile.log@1, 1xtile.log@2, 1xtile.log@3, 1xtile.leaves@0, 1xtile.leaves@1, 1xtile.leaves@2, 1xtile.leaves@3, 1xtile.sponge@0, 1xtile.sponge@1, 1xtile.glass@0, 1xtile.oreLapis@0, 1xtile.blockLapis@0, 1xtile.dispenser@0, 1xtile.sandStone@0, 1xtile.sandStone@1, 1xtile.sandStone@2, 1xtile.musicBlock@0, 1xtile.goldenRail@0, 1xtile.detectorRail@0, 1xtile.pistonStickyBase@0, 1xtile.web@0, 1xtile.tallgrass@1, 1xtile.tallgrass@2, 1xtile.deadbush@0, 1xtile.pistonBase@0, 1xtile.cloth@0, 1xtile.cloth@1, 1xtile.cloth@2, 1xtile.cloth@3, 1xtile.cloth@4, 1xtile.cloth@5, 1xtile.cloth@6, 1xtile.cloth@7, 1xtile.cloth@8, 1xtile.cloth@9, 1xtile.cloth@10, 1xtile.cloth@11, 1xtile.cloth@12, 1xtile.cloth@13, 1xtile.cloth@14, 1xtile.cloth@15, 1xtile.flower1@0, 1xtile.flower2@0, 1xtile.flower2@1, 1xtile.flower2@2, 1xtile.flower2@3, 1xtile.flower2@4, 1xtile.flower2@5, 1xtile.flower2@6, 1xtile.flower2@7, 1xtile.flower2@8, 1xtile.mushroom@0, 1xtile.mushroom@0, 1xtile.blockGold@0, 1xtile.blockIron@0, 1xtile.stoneSlab@0, 1xtile.stoneSlab@1, 1xtile.stoneSlab@3, 1xtile.stoneSlab@4, 1xtile.stoneSlab@5, 1xtile.stoneSlab@6, 1xtile.stoneSlab@7, 1xtile.brick@0, 1xtile.tnt@0, 1xtile.bookshelf@0, 1xtile.stoneMoss@0, 1xtile.obsidian@0, 1xtile.torch@0, 1xtile.mobSpawner@0, 1xtile.stairsWood@0, 1xtile.chest@0, 1xtile.oreDiamond@0, 1xtile.blockDiamond@0, 1xtile.workbench@0, 1xtile.farmland@0, 1xtile.furnace@0, 1xtile.furnace@0, 1xtile.ladder@0, 1xtile.rail@0, 1xtile.stairsStone@0, 1xtile.lever@0, 1xtile.pressurePlateStone@0, 1xtile.pressurePlateWood@0, 1xtile.oreRedstone@0, 1xtile.notGate@0, 1xtile.button@0, 1xtile.snow@0, 1xtile.ice@0, 1xtile.snow@0, 1xtile.cactus@0, 1xtile.clay@0, 1xtile.jukebox@0, 1xtile.fence@0, 1xtile.pumpkin@0, 1xtile.hellrock@0, 1xtile.hellsand@0, 1xtile.lightgem@0, 1xtile.litpumpkin@0, 1xtile.stainedGlass@0, 1xtile.stainedGlass@1, 1xtile.stainedGlass@2, 1xtile.stainedGlass@3, 1xtile.stainedGlass@4, 1xtile.stainedGlass@5, 1xtile.stainedGlass@6, 1xtile.stainedGlass@7, 1xtile.stainedGlass@8, 1xtile.stainedGlass@9, 1xtile.stainedGlass@10, 1xtile.stainedGlass@11, 1xtile.stainedGlass@12, 1xtile.stainedGlass@13, 1xtile.stainedGlass@14, 1xtile.stainedGlass@15, 1xtile.trapdoor@0, 1xtile.monsterStoneEgg@0, 1xtile.monsterStoneEgg@1, 1xtile.monsterStoneEgg@2, 1xtile.monsterStoneEgg@3, 1xtile.monsterStoneEgg@4, 1xtile.monsterStoneEgg@5, 1xtile.stonebricksmooth@0, 1xtile.stonebricksmooth@1, 1xtile.stonebricksmooth@2, 1xtile.stonebricksmooth@3, 1xtile.mushroom@0, 1xtile.mushroom@0, 1xtile.fenceIron@0, 1xtile.thinGlass@0, 1xtile.melon@0, 1xtile.vine@0, 1xtile.fenceGate@0, 1xtile.stairsBrick@0, 1xtile.stairsStoneBrickSmooth@0, 1xtile.mycel@0, 1xtile.waterlily@0, 1xtile.netherBrick@0, 1xtile.netherFence@0, 1xtile.stairsNetherBrick@0, 1xtile.enchantmentTable@0, 1xtile.endPortalFrame@0, 1xtile.whiteStone@0, 1xtile.dragonEgg@0, 1xtile.redstoneLight@0, 1xtile.woodSlab@0, 1xtile.woodSlab@1, 1xtile.woodSlab@2, 1xtile.woodSlab@3, 1xtile.woodSlab@4, 1xtile.woodSlab@5, 1xtile.stairsSandStone@0, 1xtile.oreEmerald@0, 1xtile.enderChest@0, 1xtile.tripWireSource@0, 1xtile.blockEmerald@0, 1xtile.stairsWoodSpruce@0, 1xtile.stairsWoodBirch@0, 1xtile.stairsWoodJungle@0, 1xtile.commandBlock@0, 1xtile.beacon@0, 1xtile.cobbleWall@0, 1xtile.cobbleWall@1, 1xtile.button@0, 1xtile.anvil@0, 1xtile.anvil@1, 1xtile.anvil@2, 1xtile.chestTrap@0, 1xtile.weightedPlate_light@0, 1xtile.weightedPlate_heavy@0, 1xtile.daylightDetector@0, 1xtile.blockRedstone@0, 1xtile.netherquartz@0, 1xtile.hopper@0, 1xtile.quartzBlock@0, 1xtile.quartzBlock@1, 1xtile.quartzBlock@2, 1xtile.stairsQuartz@0, 1xtile.activatorRail@0, 1xtile.dropper@0, 1xtile.clayHardenedStained@0, 1xtile.clayHardenedStained@1, 1xtile.clayHardenedStained@2, 1xtile.clayHardenedStained@3, 1xtile.clayHardenedStained@4, 1xtile.clayHardenedStained@5, 1xtile.clayHardenedStained@6, 1xtile.clayHardenedStained@7, 1xtile.clayHardenedStained@8, 1xtile.clayHardenedStained@9, 1xtile.clayHardenedStained@10, 1xtile.clayHardenedStained@11, 1xtile.clayHardenedStained@12, 1xtile.clayHardenedStained@13, 1xtile.clayHardenedStained@14, 1xtile.clayHardenedStained@15, 1xtile.thinStainedGlass@0, 1xtile.thinStainedGlass@1, 1xtile.thinStainedGlass@2, 1xtile.thinStainedGlass@3, 1xtile.thinStainedGlass@4, 1xtile.thinStainedGlass@5, 1xtile.thinStainedGlass@6, 1xtile.thinStainedGlass@7, 1xtile.thinStainedGlass@8, 1xtile.thinStainedGlass@9, 1xtile.thinStainedGlass@10, 1xtile.thinStainedGlass@11, 1xtile.thinStainedGlass@12, 1xtile.thinStainedGlass@13, 1xtile.thinStainedGlass@14, 1xtile.thinStainedGlass@15, 1xtile.leaves@0, 1xtile.leaves@1, 1xtile.log@0, 1xtile.log@1, 1xtile.stairsWoodAcacia@0, 1xtile.stairsWoodDarkOak@0, 1xtile.slime@0, 1xtile.barrier@0, 1xtile.ironTrapdoor@0, 1xtile.prismarine@0, 1xtile.prismarine@1, 1xtile.prismarine@2, 1xtile.seaLantern@0, 1xtile.hayBlock@0, 1xtile.woolCarpet@0, 1xtile.woolCarpet@1, 1xtile.woolCarpet@2, 1xtile.woolCarpet@3, 1xtile.woolCarpet@4, 1xtile.woolCarpet@5, 1xtile.woolCarpet@6, 1xtile.woolCarpet@7, 1xtile.woolCarpet@8, 1xtile.woolCarpet@9, 1xtile.woolCarpet@10, 1xtile.woolCarpet@11, 1xtile.woolCarpet@12, 1xtile.woolCarpet@13, 1xtile.woolCarpet@14, 1xtile.woolCarpet@15, 1xtile.clayHardened@0, 1xtile.blockCoal@0, 1xtile.icePacked@0, 1xtile.doublePlant@0, 1xtile.doublePlant@1, 1xtile.doublePlant@2, 1xtile.doublePlant@3, 1xtile.doublePlant@4, 1xtile.doublePlant@5, 1xtile.redSandStone@0, 1xtile.redSandStone@1, 1xtile.redSandStone@2, 1xtile.stairsRedSandStone@0, 1xtile.stoneSlab2@0, 1xtile.spruceFenceGate@0, 1xtile.birchFenceGate@0, 1xtile.jungleFenceGate@0, 1xtile.darkOakFenceGate@0, 1xtile.acaciaFenceGate@0, 1xtile.spruceFence@0, 1xtile.birchFence@0, 1xtile.jungleFence@0, 1xtile.darkOakFence@0, 1xtile.acaciaFence@0, 1xtile.tanningrack@0, 1xtile.grinder@0, 1xtile.compactor@0, 1xtile.deconstructor@0, 1xtile.forge@0, 1xtile.movinglightsource@0, 1xitem.shovelIron@0, 1xitem.pickaxeIron@0, 1xitem.hatchetIron@0, 1xitem.flintAndSteel@0, 1xitem.apple@0, 1xitem.bow@0, 1xitem.arrow@0, 1xitem.coal@0, 1xitem.coal@1, 1xitem.diamond@0, 1xitem.ingotIron@0, 1xitem.ingotGold@0, 1xitem.swordIron@0, 1xitem.swordWood@0, 1xitem.shovelWood@0, 1xitem.pickaxeWood@0, 1xitem.hatchetWood@0, 1xitem.swordStone@0, 1xitem.shovelStone@0, 1xitem.pickaxeStone@0, 1xitem.hatchetStone@0, 1xitem.swordDiamond@0, 1xitem.shovelDiamond@0, 1xitem.pickaxeDiamond@0, 1xitem.hatchetDiamond@0, 1xitem.stick@0, 1xitem.bowl@0, 1xitem.mushroomStew@0, 1xitem.swordGold@0, 1xitem.shovelGold@0, 1xitem.pickaxeGold@0, 1xitem.hatchetGold@0, 1xitem.string@0, 1xitem.feather@0, 1xitem.sulphur@0, 1xitem.hoeWood@0, 1xitem.hoeStone@0, 1xitem.hoeIron@0, 1xitem.hoeDiamond@0, 1xitem.hoeGold@0, 1xitem.seeds@0, 1xitem.wheat@0, 1xitem.bread@0, 1xitem.helmetCloth@0, 1xitem.chestplateCloth@0, 1xitem.leggingsCloth@0, 1xitem.bootsCloth@0, 1xitem.helmetChain@0, 1xitem.chestplateChain@0, 1xitem.leggingsChain@0, 1xitem.bootsChain@0, 1xitem.helmetIron@0, 1xitem.chestplateIron@0, 1xitem.leggingsIron@0, 1xitem.bootsIron@0, 1xitem.helmetDiamond@0, 1xitem.chestplateDiamond@0, 1xitem.leggingsDiamond@0, 1xitem.bootsDiamond@0, 1xitem.helmetGold@0, 1xitem.chestplateGold@0, 1xitem.leggingsGold@0, 1xitem.bootsGold@0, 1xitem.flint@0, 1xitem.porkchopRaw@0, 1xitem.porkchopCooked@0, 1xitem.painting@0, 1xitem.appleGold@0, 1xitem.appleGold@1, 1xitem.sign@0, 1xitem.doorOak@0, 1xitem.bucket@0, 1xitem.bucketWater@0, 1xitem.bucketLava@0, 1xitem.minecart@0, 1xitem.saddle@0, 1xitem.doorIron@0, 1xitem.redstone@0, 1xitem.snowball@0, 1xitem.boat@0, 1xitem.leather@0, 1xitem.milk@0, 1xitem.brick@0, 1xitem.clay@0, 1xitem.reeds@0, 1xitem.paper@0, 1xitem.book@0, 1xitem.slimeball@0, 1xitem.minecartChest@0, 1xitem.minecartFurnace@0, 1xitem.egg@0, 1xitem.compass@0, 1xitem.fishingRod@0, 1xitem.clock@0, 1xitem.yellowDust@0, 1xitem.fish@0, 1xitem.fish@1, 1xitem.fish@2, 1xitem.fish@3, 1xitem.fish@0, 1xitem.fish@1, 1xitem.dyePowder@0, 1xitem.dyePowder@1, 1xitem.dyePowder@2, 1xitem.dyePowder@3, 1xitem.dyePowder@4, 1xitem.dyePowder@5, 1xitem.dyePowder@6, 1xitem.dyePowder@7, 1xitem.dyePowder@8, 1xitem.dyePowder@9, 1xitem.dyePowder@10, 1xitem.dyePowder@11, 1xitem.dyePowder@12, 1xitem.dyePowder@13, 1xitem.dyePowder@14, 1xitem.dyePowder@15, 1xitem.bone@0, 1xitem.sugar@0, 1xitem.cake@0, 1xitem.bed@0, 1xitem.diode@0, 1xitem.cookie@0, 1xitem.map@0, 1xitem.shears@0, 1xitem.melon@0, 1xitem.seeds_pumpkin@0, 1xitem.seeds_melon@0, 1xitem.beefRaw@0, 1xitem.beefCooked@0, 1xitem.chickenRaw@0, 1xitem.chickenCooked@0, 1xitem.rottenFlesh@0, 1xitem.enderPearl@0, 1xitem.blazeRod@0, 1xitem.ghastTear@0, 1xitem.goldNugget@0, 1xitem.netherStalkSeeds@0, 1xitem.potion@0, 1xitem.potion@8193, 1xitem.potion@8225, 1xitem.potion@8257, 1xitem.potion@16385, 1xitem.potion@16417, 1xitem.potion@16449, 1xitem.potion@8194, 1xitem.potion@8226, 1xitem.potion@8258, 1xitem.potion@16386, 1xitem.potion@16418, 1xitem.potion@16450, 1xitem.potion@8227, 1xitem.potion@8259, 1xitem.potion@16419, 1xitem.potion@16451, 1xitem.potion@8196, 1xitem.potion@8228, 1xitem.potion@8260, 1xitem.potion@16388, 1xitem.potion@16420, 1xitem.potion@16452, 1xitem.potion@8261, 1xitem.potion@8229, 1xitem.potion@16453, 1xitem.potion@16421, 1xitem.potion@8230, 1xitem.potion@8262, 1xitem.potion@16422, 1xitem.potion@16454, 1xitem.potion@8232, 1xitem.potion@8264, 1xitem.potion@16424, 1xitem.potion@16456, 1xitem.potion@8201, 1xitem.potion@8233, 1xitem.potion@8265, 1xitem.potion@16393, 1xitem.potion@16425, 1xitem.potion@16457, 1xitem.potion@8234, 1xitem.potion@8266, 1xitem.potion@16426, 1xitem.potion@16458, 1xitem.potion@8267, 1xitem.potion@8235, 1xitem.potion@16459, 1xitem.potion@16427, 1xitem.potion@8268, 1xitem.potion@8236, 1xitem.potion@16460, 1xitem.potion@16428, 1xitem.potion@8237, 1xitem.potion@8269, 1xitem.potion@16429, 1xitem.potion@16461, 1xitem.potion@8238, 1xitem.potion@8270, 1xitem.potion@16430, 1xitem.potion@16462, 1xitem.glassBottle@0, 1xitem.spiderEye@0, 1xitem.fermentedSpiderEye@0, 1xitem.blazePowder@0, 1xitem.magmaCream@0, 1xitem.brewingStand@0, 1xitem.cauldron@0, 1xitem.eyeOfEnder@0, 1xitem.speckledMelon@0, 1xitem.monsterPlacer@50, 1xitem.monsterPlacer@51, 1xitem.monsterPlacer@52, 1xitem.monsterPlacer@54, 1xitem.monsterPlacer@55, 1xitem.monsterPlacer@56, 1xitem.monsterPlacer@57, 1xitem.monsterPlacer@58, 1xitem.monsterPlacer@59, 1xitem.monsterPlacer@60, 1xitem.monsterPlacer@61, 1xitem.monsterPlacer@62, 1xitem.monsterPlacer@65, 1xitem.monsterPlacer@66, 1xitem.monsterPlacer@67, 1xitem.monsterPlacer@68, 1xitem.monsterPlacer@90, 1xitem.monsterPlacer@91, 1xitem.monsterPlacer@92, 1xitem.monsterPlacer@93, 1xitem.monsterPlacer@94, 1xitem.monsterPlacer@95, 1xitem.monsterPlacer@96, 1xitem.monsterPlacer@98, 1xitem.monsterPlacer@100, 1xitem.monsterPlacer@101, 1xitem.monsterPlacer@120, 1xitem.expBottle@0, 1xitem.fireball@0, 1xitem.writingBook@0, 1xitem.writtenBook@0, 1xitem.emerald@0, 1xitem.frame@0, 1xitem.flowerPot@0, 1xitem.carrots@0, 1xitem.potato@0, 1xitem.potatoBaked@0, 1xitem.potatoPoisonous@0, 1xitem.emptyMap@0, 1xitem.carrotGolden@0, 1xitem.skull@0, 1xitem.skull@1, 1xitem.skull@2, 1xitem.skull@3, 1xitem.skull@4, 1xitem.carrotOnAStick@0, 1xitem.netherStar@0, 1xitem.pumpkinPie@0, 1xitem.fireworks@0, 1xitem.fireworksCharge@0, 1xitem.enchantedBook@0, 1xitem.comparator@0, 1xitem.netherbrick@0, 1xitem.netherquartz@0, 1xitem.minecartTnt@0, 1xitem.minecartHopper@0, 1xitem.prismarineShard@0, 1xitem.prismarineCrystals@0, 1xitem.rabbitRaw@0, 1xitem.rabbitCooked@0, 1xitem.rabbitStew@0, 1xitem.rabbitFoot@0, 1xitem.rabbitHide@0, 1xitem.armorStand@0, 1xitem.horsearmormetal@0, 1xitem.horsearmorgold@0, 1xitem.horsearmordiamond@0, 1xitem.leash@0, 1xitem.nameTag@0, 1xitem.minecartCommandBlock@0, 1xitem.muttonRaw@0, 1xitem.muttonCooked@0, 1xtile.banner@15, 1xtile.banner@14, 1xtile.banner@13, 1xtile.banner@12, 1xtile.banner@11, 1xtile.banner@10, 1xtile.banner@9, 1xtile.banner@8, 1xtile.banner@7, 1xtile.banner@6, 1xtile.banner@5, 1xtile.banner@4, 1xtile.banner@3, 1xtile.banner@2, 1xtile.banner@1, 1xtile.banner@0, 1xitem.doorSpruce@0, 1xitem.doorBirch@0, 1xitem.doorJungle@0, 1xitem.doorAcacia@0, 1xitem.doorDarkOak@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.record@0, 1xitem.cowhide@0, 1xitem.sheepskin@0, 1xitem.pigskin@0, 1xitem.horsehide@0, 1xitem.swordExtended@0, 1xitem.spawn_egg_Test Pig@0]

[08:28:50] [Netty Server IO #1/INFO] [sTDOUT]: [com.blogspot.jabelarminecraft.blocksmith.networking.MessageSendItemStackRegistryToServer$Handler:onMessage:63]: Message received

[08:28:54] [Chunk Batcher 0/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.

[08:28:55] [Chunk Batcher 1/WARN]: Needed to grow BufferBuilder buffer: Old size 524288 bytes, new size 2621440 bytes.

 

 

And you can see my code here. From the console log it seems that the MessageSendItemStackRegistryToServer class seems to be the culprit. https://github.com/jabelar/JadensMod

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

This should be the Tessellator allocating more memory for vertex storage. I am not sure why it happens after the crash though.

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

Posted

I can tell you that the 'Needed to grow BufferBuilder buffer' does not cause crashes on my system.  Happens all the time, especially in the dev environment.

 

Probably don't get hung up on it as the source of your issue.

Long time Bukkit & Forge Programmer

Happy to try and help

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



×
×
  • Create New...

Important Information

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