Jump to content

Recommended Posts

Posted

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

Posted

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.

Posted

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.

Posted

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

Posted

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.

Posted

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.

Posted

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?

Posted

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.

Posted

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

Posted

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.

Posted

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.

Posted

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.

 

 

Posted

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.

Posted

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;	

}


}

Posted

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.

Posted

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

 

Posted

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.

Posted

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.

Posted

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

Posted

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.

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hi, i'm really having problems trying to set the texture to my custom item. I thought i'm doing everything correctly, but all i see is the missing texture block for my item. I am trying this for over a week now and getting really frustrated. The only time i could make the texture work, was when i used an older Forge version (52.0.1) for Minecraft (1.21.4). Was there a fundamental change for textures and models somewhere between versions that i'm missing? I started with Forge 54.1.0 and had this problem, so in my frustration i tried many things: Upgrading to Forge 54.1.1, created multiple new projects, workspaces, redownloaded everything and setting things up multiple times, as it was suggested in an older thread. Therea are no errors in the console logs, but maybe i'm blind, so i pasted the console logs to pastebin anyway: https://pastebin.com/zAM8RiUN The only time i see an error is when i change the models JSON file to an incorrect JSON which makes sense and that suggests to me it is actually reading the JSON file.   I set the github repository to public, i would be so thankful if anyone could take a look and tell me what i did wrong: https://github.com/xLorkin/teleport_pug_forge   As a note: i'm pretty new to modding, this is my first mod ever. But i'm used to programming. I had some up and downs, but through reading the documentation, using google and experimenting, i could solve all other problems. I only started modding for Minecraft because my son is such a big fan and wanted this mod.
    • Please read the FAQ (link in orange bar at top of page), and post logs as described there.
    • Hello fellow Minecrafters! I recently returned to Minecraft and realized I needed a wiki that displays basic information easily and had great user navigation. That’s why I decided to build: MinecraftSearch — a site by a Minecraft fan, for Minecraft fans. Key Features So Far Straight-to-the-Point Info: No extra fluff; just the essentials on items, mobs, recipes, loot and more. Clean & Intuitive Layout: Easy navigation so you spend less time scrolling and more time playing. Optimized Search: Search for anything—items, mobs, blocks—and get results instantly. What I’m Thinking of Adding More data/information: Catch chances for fishing rod, traveling villager trades, biomes info and a lot more. The website is still under development and need a lot more data added. Community Contributions: Potential for user-uploaded tips for items/mobs/blocks in the future. Feature Requests Welcome: Your ideas could shape how the wiki evolves! You can see my roadmap at the About page https://minecraftsearch.com/about I’d love for you to check out MinecraftSearch and see if it helps you find the info you need faster. Feedback is crucial—I want to develop this further based on what the community needs most, so please let me know what you think. Thanks, and happy crafting!
    • Instructions on how to install newer Java can be found in the FAQ
    • That's just plain wrong... newer versions are much better optimised and start a lot faster than 1.8.9, both Forge and Minecraft itself. Comparing Fabric 1.21 with Forge 1.8 is like comparing apples and oranges... one's brand new and the other's over a decade old.
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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