Posted January 31, 20178 yr i'd like to have my item store some values about it: private Boolean found = false; private double distSquared = 0; private int type = -1; but if i just declare them in the Item class, they are global - all items have the same values. I need to somehow make each item have one and save/load them from/to NBT. thx for any response
January 31, 20178 yr ItemStack#getTagCompund returns the stack's compound tag, which is null by default. If it's null , create a new NBTTagCompound and use ItemStack#setTagCompound to set it as the stack's compound tag. You can then use the NBTTagCompound#getX / setX to get/set values in the compound tag. You can also use capabilities to store data on an ItemStack (or any other ICapabilityProvider ). Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
January 31, 20178 yr You can set NBT data almost anywhere you have an ItemStack . You can do this for the output of a single crafting recipe by setting the NBT data before you add the recipe or in IRecipe#getCraftingResult . You can do this for an item crafted, smelted or bought by a player by overriding Item#onCreated . Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
January 31, 20178 yr Author but i want to have different nbt for different recipe, so the onCreated one is not usefull for me. I also want to ask how often is the NBT read from the item if i don't call getTagCompound myself
January 31, 20178 yr but i want to have different nbt for different recipe, so the onCreated one is not usefull for me. So do it for each recipe. I also want to ask how often is the NBT read from the item if i don't call getTagCompound myself I'm not entirely sure what you're asking here. Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
January 31, 20178 yr when does the game read item's NBT ? The item's NBT is accessed all over the place, look for usages of the ItemStack#stackTagCompound field or the ItemStack#getTagCompound method using your IDE. Your values won't be accessed or modified by the game. Edit: Fixed the formatting. Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
January 31, 20178 yr Author So i have one problem: when the game tries to render the item in creative inventory it crashes: [17:06:42] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: ---- Minecraft Crash Report ---- // My bad. Time: 1/31/17 5:06 PM Description: Updating screen events java.lang.NullPointerException: Updating screen events at vms.archeology.items.Detector.addInformation(Detector.java:223) at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:709) at net.minecraft.client.gui.inventory.GuiContainerCreative.updateFilteredItems(GuiContainerCreative.java:402) at net.minecraft.client.gui.inventory.GuiContainerCreative.updateCreativeSearch(GuiContainerCreative.java:380) at net.minecraft.client.gui.inventory.GuiContainerCreative.setCurrentCreativeTab(GuiContainerCreative.java:573) at net.minecraft.client.gui.inventory.GuiContainerCreative.mouseReleased(GuiContainerCreative.java:471) at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:621) at net.minecraft.client.gui.inventory.GuiContainerCreative.handleMouseInput(GuiContainerCreative.java:592) at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:576) at net.minecraft.client.Minecraft.runTick(Minecraft.java:1792) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1119) at net.minecraft.client.Minecraft.run(Minecraft.java:407) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace: at vms.archeology.items.Detector.addInformation(Detector.java:223) at net.minecraft.item.ItemStack.getTooltip(ItemStack.java:709) at net.minecraft.client.gui.inventory.GuiContainerCreative.updateFilteredItems(GuiContainerCreative.java:402) at net.minecraft.client.gui.inventory.GuiContainerCreative.updateCreativeSearch(GuiContainerCreative.java:380) at net.minecraft.client.gui.inventory.GuiContainerCreative.setCurrentCreativeTab(GuiContainerCreative.java:573) at net.minecraft.client.gui.inventory.GuiContainerCreative.mouseReleased(GuiContainerCreative.java:471) at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:621) at net.minecraft.client.gui.inventory.GuiContainerCreative.handleMouseInput(GuiContainerCreative.java:592) at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:576) -- Affected screen -- Details: Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityPlayerSP['Player953'/1, l='MpServer', x=-1.50, y=4.00, z=0.50]] Chunk stats: MultiplayerChunkCache: 81, 81 Level seed: 0 Level generator: ID 01 - flat, ver 0. Features enabled: false Level generator options: Level spawn location: World: (8,4,, Chunk: (at 8,0,8 in 0,0; contains blocks 0,0,0 to 15,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Level time: 262 game time, 262 day time Level dimension: 0 Level storage version: 0x00000 - Unknown? Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false Forced entities: 1 total; [EntityPlayerSP['Player953'/1, l='MpServer', x=-1.50, y=4.00, z=0.50]] Retry entities: 0 total; [] Server brand: fml,forge Server type: Integrated singleplayer server Stacktrace: at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:451) at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2774) at net.minecraft.client.Minecraft.run(Minecraft.java:428) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) -- System Details -- Details: Minecraft Version: 1.11.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_111, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1769469760 bytes (1687 MB) / 2130051072 bytes (2031 MB) up to 2130051072 bytes (2031 MB) JVM Flags: 3 total; -Xincgc -Xmx2048M -Xms2048M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.38 Powered by Forge 13.20.0.2210 6 mods loaded, 6 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJAAAA minecraft{1.11.2} [Minecraft] (minecraft.jar) UCHIJAAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.11.2-13.20.0.2210.jar) UCHIJAAAA forge{13.20.0.2210} [Minecraft Forge] (forgeSrc-1.11.2-13.20.0.2210.jar) UCHIJAAAA archeology{0.0.0 (Alpha)} [Archeology] (bin) UCHIJAAAA jei{4.2.2.215} [Just Enough Items] (jei_1.11.2-4.2.2.215.jar) Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 369.09' Renderer: 'GeForce GT 610/PCIe/SSE2' Launched Version: 1.11.2 LWJGL: 2.9.4 OpenGL: GeForce GT 610/PCIe/SSE2 GL version 4.5.0 NVIDIA 369.09, NVIDIA Corporation GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: Current Language: English (US) Profiler Position: N/A (disabled) CPU: 2x Pentium(R) Dual-Core CPU E5700 @ 3.00GHz [17:06:42] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Villfuk\Desktop\ancient\run\.\crash-reports\crash-2017-01-31_17.06.42-client.txt AL lib: (EE) alc_cleanup: 1 device not closed Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release probably because it tries to read from the NBT of the item in while in creative inventory and it probably doesn't have any NBT @Override public void addInformation(ItemStack stack, EntityPlayer playerIn, List<String> tooltip, boolean advanced) { NBTTagCompound nbt = stack.getTagCompound(); tooltip.add("Coil: " + String.valueOf(nbt.getInteger("coil"))); tooltip.add("Battery: " + String.valueOf(nbt.getInteger("battery"))); tooltip.add("Display: " + String.valueOf(nbt.getInteger("display"))); tooltip.add("Rod: " + String.valueOf(nbt.getInteger("rod"))); tooltip.add("Found something: " + String.valueOf(nbt.getBoolean("found"))); super.addInformation(stack, playerIn, tooltip, advanced); } is there a way to make NBT for the item in creative inventory?
January 31, 20178 yr What happens if the NBT tag is null there? Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
January 31, 20178 yr Author I did if (nbt.hasKey("something")) everywhere, but it still throws some wierd error: [17:20:50] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: ---- Minecraft Crash Report ---- // Uh... Did I do that? Time: 1/31/17 5:20 PM Description: Rendering item java.lang.NullPointerException: Rendering item at vms.archeology.items.Detector$1.apply(Detector.java:45) at net.minecraft.client.renderer.block.model.ItemOverride.matchesItemStack(ItemOverride.java:51) at net.minecraft.client.renderer.block.model.ItemOverrideList.applyOverride(ItemOverrideList.java:39) at net.minecraft.client.renderer.block.model.ItemOverrideList.handleItemState(ItemOverrideList.java:53) at net.minecraft.client.renderer.RenderItem.getItemModelWithOverrides(RenderItem.java:253) at net.minecraft.client.renderer.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:355) at net.minecraft.client.gui.inventory.GuiContainer.drawSlot(GuiContainer.java:296) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:117) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:59) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:647) at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:382) at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1164) at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1140) at net.minecraft.client.Minecraft.run(Minecraft.java:407) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace: at vms.archeology.items.Detector$1.apply(Detector.java:45) at net.minecraft.client.renderer.block.model.ItemOverride.matchesItemStack(ItemOverride.java:51) at net.minecraft.client.renderer.block.model.ItemOverrideList.applyOverride(ItemOverrideList.java:39) at net.minecraft.client.renderer.block.model.ItemOverrideList.handleItemState(ItemOverrideList.java:53) at net.minecraft.client.renderer.RenderItem.getItemModelWithOverrides(RenderItem.java:253) -- Item being rendered -- Details: Item Type: vms.archeology.items.Detector@685f43ca Item Aux: 0 Item NBT: null Item Foil: false Stacktrace: at net.minecraft.client.renderer.RenderItem.renderItemAndEffectIntoGUI(RenderItem.java:355) at net.minecraft.client.gui.inventory.GuiContainer.drawSlot(GuiContainer.java:296) at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:117) at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:59) at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:647) at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:382) -- Screen render details -- Details: Screen name: net.minecraft.client.gui.inventory.GuiContainerCreative Mouse location: Scaled: (165, 31). Absolute: (330, 416) Screen size: Scaled: (427, 240). Absolute: (854, 480). Scale factor of 2 -- Affected level -- Details: Level name: MpServer All players: 1 total; [EntityPlayerSP['Player984'/1, l='MpServer', x=0.50, y=4.00, z=3.09]] Chunk stats: MultiplayerChunkCache: 81, 81 Level seed: 0 Level generator: ID 01 - flat, ver 0. Features enabled: false Level generator options: Level spawn location: World: (8,4,, Chunk: (at 8,0,8 in 0,0; contains blocks 0,0,0 to 15,255,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Level time: 781 game time, 781 day time Level dimension: 0 Level storage version: 0x00000 - Unknown? Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false) Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false Forced entities: 1 total; [EntityPlayerSP['Player984'/1, l='MpServer', x=0.50, y=4.00, z=3.09]] Retry entities: 0 total; [] Server brand: fml,forge Server type: Integrated singleplayer server Stacktrace: at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:451) at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2774) at net.minecraft.client.Minecraft.run(Minecraft.java:428) at net.minecraft.client.main.Main.main(Main.java:118) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) at GradleStart.main(GradleStart.java:26) -- System Details -- Details: Minecraft Version: 1.11.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_111, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 1820782400 bytes (1736 MB) / 2130051072 bytes (2031 MB) up to 2130051072 bytes (2031 MB) JVM Flags: 3 total; -Xincgc -Xmx2048M -Xms2048M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.38 Powered by Forge 13.20.0.2210 6 mods loaded, 6 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored UCHIJAAAA minecraft{1.11.2} [Minecraft] (minecraft.jar) UCHIJAAAA mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) UCHIJAAAA FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.11.2-13.20.0.2210.jar) UCHIJAAAA forge{13.20.0.2210} [Minecraft Forge] (forgeSrc-1.11.2-13.20.0.2210.jar) UCHIJAAAA archeology{0.0.0 (Alpha)} [Archeology] (bin) UCHIJAAAA jei{4.2.2.215} [Just Enough Items] (jei_1.11.2-4.2.2.215.jar) Loaded coremods (and transformers): GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 369.09' Renderer: 'GeForce GT 610/PCIe/SSE2' Launched Version: 1.11.2 LWJGL: 2.9.4 OpenGL: GeForce GT 610/PCIe/SSE2 GL version 4.5.0 NVIDIA 369.09, NVIDIA Corporation GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: Current Language: English (US) Profiler Position: N/A (disabled) CPU: 2x Pentium(R) Dual-Core CPU E5700 @ 3.00GHz [17:20:50] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:600]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Villfuk\Desktop\ancient\run\.\crash-reports\crash-2017-01-31_17.20.50-client.txt AL lib: (EE) alc_cleanup: 1 device not closed Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release help please
January 31, 20178 yr If nbt is null , calling a method on it will throw a NullPointerException . Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
January 31, 20178 yr if(nbt == null) Duh. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
January 31, 20178 yr Author why does it do this :'( at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.writeEntry(NBTTagCompound.java:570) ~[NBTTagCompound.class:?] at net.minecraft.nbt.NBTTagCompound.write(NBTTagCompound.java:35) ~[NBTTagCompound.class:?] [18:56:00] [server thread/INFO] [FML]: Applying holder lookups [18:56:00] [server thread/INFO] [FML]: Holder lookups applied [18:56:00] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.
January 31, 20178 yr Post your code. If there's a problem, always post your code. What you have there is an infinite loop. Some part of your code is doing something very naughty with NBT. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
January 31, 20178 yr Author This happens when i give myself detector with {coil:2,rod:2,display:2,battery:2,found:false} and use it. package vms.archeology.items; import java.util.ArrayList; import java.util.List; import javax.annotation.Nullable; import net.minecraft.entity.Entity; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.item.EntityItem; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.IItemPropertyGetter; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.EnumActionResult; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumHand; import net.minecraft.util.ResourceLocation; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.common.util.Constants.NBT; import vms.archeology.Reference; import vms.archeology.blocks.ArcheologyDirt; import vms.archeology.handlers.EnumHandler; import vms.archeology.init.ModBlocks; import vms.archeology.util.Utils; public class Detector extends Item{ private List<BlockPos> modifiers = new ArrayList(); private BlockPos scanBlock; public Detector(String unlocalizedName){ this.setUnlocalizedName(unlocalizedName); this.setRegistryName(new ResourceLocation(Reference.MODID, unlocalizedName)); this.setMaxDamage(420); this.addPropertyOverride(new ResourceLocation("found"), new IItemPropertyGetter(){ @Override public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null){ if(nbt.hasKey("found")){ if (nbt.getBoolean("found")){ return 1.0F; } } } return 0; } }); this.addPropertyOverride(new ResourceLocation("coil"), new IItemPropertyGetter(){ @Override public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null){ if (nbt.hasKey("coil")) return ((float)nbt.getInteger("coil"))/10; } return 0; } }); this.addPropertyOverride(new ResourceLocation("battery"), new IItemPropertyGetter(){ @Override public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null){ if (nbt.hasKey("battery")) return ((float)nbt.getInteger("battery"))/10; } return 0; } }); this.addPropertyOverride(new ResourceLocation("rod"), new IItemPropertyGetter(){ @Override public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null){ if (nbt.hasKey("rod")) return ((float)nbt.getInteger("rod"))/10; } return 0; } }); this.addPropertyOverride(new ResourceLocation("display"), new IItemPropertyGetter(){ @Override public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null){ if (nbt.hasKey("display")) return ((float)nbt.getInteger("display"))/10; } return 0; } }); this.addPropertyOverride(new ResourceLocation("distance"), new IItemPropertyGetter(){ @Override public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null){ if (nbt.hasKey("distance_squared")) return ((float)nbt.getDouble("distance_squared"))/10000; } return 0; } }); this.addPropertyOverride(new ResourceLocation("type"), new IItemPropertyGetter(){ @Override public float apply(ItemStack stack, @Nullable World worldIn, @Nullable EntityLivingBase entityIn) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null){ if (nbt.hasKey("type")) return (((float)nbt.getInteger("type")) + 1)/10; } return 0; } }); } @Override public void onCreated(ItemStack stack, World worldIn, EntityPlayer playerIn) { if(stack.getTagCompound() != null && !(stack.hasTagCompound())){ NBTTagCompound nbt = new NBTTagCompound(); nbt.setInteger("coil", 3); nbt.setInteger("battery", 3); nbt.setInteger("rod", 3); nbt.setInteger("display", 3); nbt.setBoolean("found", false); nbt.setInteger("type", -1); nbt.setDouble("distance_squared", 0.0); nbt.setInteger("direction", 0); stack.setTagCompound(nbt); } super.onCreated(stack, worldIn, playerIn); } @Override public EnumActionResult onItemUse(EntityPlayer player, World worldIn, BlockPos pos, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { ItemStack stack = player.getHeldItem(hand); NBTTagCompound nbt = stack.getTagCompound(); if (nbt != null){ nbt.setBoolean("found", false); stack.writeToNBT(nbt); } int x = 0; int y = 0; int z = 0; modifiers.clear(); if(nbt != null){ if(nbt.hasKey("coil")){ switch(nbt.getInteger("coil")){ case 1: generateScan(0, 1, 2); generateScan(-1, 1, 1); Scan(pos, worldIn, false, stack); break; case 2: generateScan(0, 2, 3); generateScan(-1, 1, 2); generateScan(-2, 0, 0); Scan(pos, worldIn, false, stack); break; case 3: generateScan(0, 3, 4); generateScan(-1, 2, 3); generateScan(-2, 1, 2); Scan(pos, worldIn, false, stack); break; case 4: generateScan(2, 1, 2); generateScan(1, 2, 3); generateScan(0, 2, 3); generateScan(-1, 2, 3); generateScan(-2, 1, 2); Scan(pos, worldIn, false, stack); break; case 5: generateScan(0, 2, 3); generateScan(-1, 1, 2); generateScan(-2, 0, 0); Scan(pos, worldIn, true, stack); break; case 6: generateScan(0, 1, 2); generateScan(-1, 1, 2); generateScan(-2, 1, 2); generateScan(-3, 1, 1); generateScan(-4, 1, 1); generateScan(-5, 0, 0); Scan(pos, worldIn, false, stack); break; } } } return super.onItemUse(player, worldIn, pos, hand, facing, hitX, hitY, hitZ); } public void generateScan(int y, int radius, int max){ for(int x = 0 - radius; x <= radius; x++){ for(int z = 0 - radius; z <= radius; z++){ if(Math.abs(x) + Math.abs(z) <= max) modifiers.add(new BlockPos(x, y, z)); } } } public void Scan(BlockPos pos, World world, Boolean ultraSound, ItemStack stack){ NBTTagCompound nbt = stack.getTagCompound(); for (int i = 0; i < modifiers.size(); i++) { scanBlock = new BlockPos(pos.getX() + modifiers.get(i).getX(), pos.getY() + modifiers.get(i).getY(), pos.getZ() + modifiers.get(i).getZ()); if (world.getBlockState(scanBlock).getBlock().equals(ModBlocks.archeology_dirt)){ if(ultraSound && ArcheologyDirt.getIntFromState(world.getBlockState(scanBlock)) != 0 && ArcheologyDirt.getIntFromState(world.getBlockState(scanBlock)) != 14){ nbt.setBoolean("found", true); nbt.setDouble("distance_squared", scanBlock.distanceSqToCenter(pos.getX(), pos.getY(), pos.getZ())); nbt.setInteger("type", EnumHandler.Types.getTypeId(ArcheologyDirt.getTypeFromMeta(ArcheologyDirt.getIntFromState((world.getBlockState(scanBlock)))))); nbt.setInteger("direction", getDirection(modifiers.get(i))); stack.writeToNBT(nbt); } else if(ArcheologyDirt.getMetalFromMeta(ArcheologyDirt.getIntFromState(world.getBlockState(scanBlock)))){ nbt.setBoolean("found", true); nbt.setDouble("distance_squared", scanBlock.distanceSqToCenter(pos.getX(), pos.getY(), pos.getZ())); nbt.setInteger("type", EnumHandler.Types.getTypeId(ArcheologyDirt.getTypeFromMeta(ArcheologyDirt.getIntFromState((world.getBlockState(scanBlock)))))); nbt.setInteger("direction", getDirection(modifiers.get(i))); stack.writeToNBT(nbt); } } } } @Override public void addInformation(ItemStack stack, EntityPlayer playerIn, List<String> tooltip, boolean advanced) { NBTTagCompound nbt = stack.getTagCompound(); if(nbt != null && !(nbt.hasNoTags())){ if (nbt.hasKey("coil")) tooltip.add("Coil: " + String.valueOf(nbt.getInteger("coil"))); else tooltip.add("Needs coil"); if (nbt.hasKey("battery")) tooltip.add("Battery: " + String.valueOf(nbt.getInteger("battery"))); else tooltip.add("Needs battery"); if (nbt.hasKey("display")) tooltip.add("Display: " + String.valueOf(nbt.getInteger("display"))); else tooltip.add("Needs display"); if (nbt.hasKey("rod")) tooltip.add("Rod: " + String.valueOf(nbt.getInteger("rod"))); else tooltip.add("Needs rod"); if (nbt.hasKey("found")) tooltip.add("Found something: " + String.valueOf(nbt.getBoolean("found"))); } super.addInformation(stack, playerIn, tooltip, advanced); } public int getDirection(BlockPos pos){ int x = pos.getX(); int z = pos.getZ(); if(x == 0){ if (z == 0) return 0; if (z > 0) return 1; if (z < 0); return 5; } float d = Math.abs((float)z)/((float)x); if (d > 2.4){ if (z > 0) return 1; return 5; } if (d < 0.4){ if (x > 0) return 3; return 7; } if (x > 0){ if (z > 0) return 2; return 4; } if (z > 0) return 8; return 6; } }
January 31, 20178 yr if(stack.getTagCompound() != null && !(stack.hasTagCompound())){ Seriously? Both of these will only ever be both-True or both-False. If it doesn't have a tag compound, then that compound will be null, and vice versa. That said, here's your problem: if (nbt != null){ nbt.setBoolean("found", false); stack.writeToNBT(nbt); } Why the fuck are you writing the stack (in NBT format) to the item's tag? You've literally tried to write the tag to itself by doing this. No wonder you get an infinite loop. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
January 31, 20178 yr Author if(stack.getTagCompound() != null && !(stack.hasTagCompound())){ Seriously? Both of these will only ever be both-True or both-False. If it doesn't have a tag compound, then that compound will be null, and vice versa. there should be ||, thanks for spotting this That said, here's your problem: if (nbt != null){ nbt.setBoolean("found", false); stack.writeToNBT(nbt); } Why the fuck are you writing the stack (in NBT format) to the item's tag? You've literally tried to write the tag to itself by doing this. No wonder you get an infinite loop. and i confused writeToNBT with setTagCompound THX
January 31, 20178 yr Author Ok, thanks everything works now, but when the nbt data updates, the item in the hand bobs down and up, is there a way to disable it?
January 31, 20178 yr Ok, thanks everything works now, but when the nbt data updates, the item in the hand bobs down and up, is there a way to disable it? Override Item#shouldCauseReequipAnimation VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
January 31, 20178 yr if(stack.getTagCompound() != null && !(stack.hasTagCompound())){ Seriously? Both of these will only ever be both-True or both-False. If it doesn't have a tag compound, then that compound will be null, and vice versa. there should be ||, thanks for spotting this You don't need an || either. Both values will always be identical. There is no need to check both. You only need to check one or the other. True || True / False || False is just as truthy as True / False is. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
February 1, 20178 yr Author Ok, thanks everything works now, but when the nbt data updates, the item in the hand bobs down and up, is there a way to disable it? Override Item#shouldCauseReequipAnimation And how do i use it, i'm not sure what to do with the method
February 1, 20178 yr Ok, thanks everything works now, but when the nbt data updates, the item in the hand bobs down and up, is there a way to disable it? Override Item#shouldCauseReequipAnimation And how do i use it, i'm not sure what to do with the method Only return true when the item, the size, and the metadata changes. VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect. Forge and vanilla BlockState generator.
February 1, 20178 yr Author so.. Override it, but when i do this, the model doesn't update Is there a way to make the item update, but not cause the animation?
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.