Jump to content

Recommended Posts

Posted

Hi I am trying to save data to a ItemStack with ItemStack.getTagCompound as suggested below and I cape up with the code below but it causes the client and server to crash.

 

What went wrong and how could I fix it?

 

updated code:

 

 

package jordan30001.testMod.common.item.tools.generic.tools;

import jordan30001.testMod.common.Main;
import jordan30001.testMod.common.item.ItemGemTools;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.Entity;
import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.effect.EntityLightningBolt;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumAction;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.EnumToolMaterial;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagInt;
import net.minecraft.util.Vec3;
import net.minecraft.world.World;

public class ItemSword extends Item
{
private int						weaponDamage;
private final EnumToolMaterial	toolMaterial;
private int						textureIconIndex	= 0;
private int						selectEffect		= 0;
private boolean					isOn				= false;
private boolean					isInUse				= false;

public ItemSword(int ID, EnumToolMaterial m, int tex, String name)
{
	super(ID); // The super constructor
	this.toolMaterial = m; // The material to be used
	this.maxStackSize = 1; // The max size of the itemstack
	this.setMaxDamage(m.getMaxUses()); // The durability
	this.setCreativeTab(Main.tabGems);
	this.weaponDamage = 4 + toolMaterial.getDamageVsEntity(); // How strong it is on enemies
	setTextureFile("/testModGFX/Items.png");
	this.setIconIndex(tex); // Sets the texture
	setItemName(name);
	this.textureIconIndex = tex;
}

public int func_82803_g()
{
	return this.toolMaterial.getDamageVsEntity();
}

// What must happen when you hit an entity
public boolean hitEntity(ItemStack item, EntityLiving e, EntityLiving p)
{
	if (isOn)
		switch (selectEffect)
		{
			case 0:
			break;
		case 2:
			break;
			default:
			break;
		}
	return true;
}

// Called on right clicking anywhere
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World,
		EntityPlayer par3EntityPlayer)
{
	if (isInUse == false)
	{
		isInUse = true;
		if (par1ItemStack.itemID == Main.getSword(0)) this.selectEffect = 1;
		else if (par1ItemStack.itemID == Main.getSword(0)) this.selectEffect = 2;
		else if (par1ItemStack.itemID == Main.getSword(0)) this.selectEffect = 3;
		else if (par1ItemStack.itemID == Main.getSword(0)) this.selectEffect = 4;
		else this.selectEffect = 0;
		if (isOn)
		{
			this.setIconIndex(textureIconIndex);
			this.isOn = false;
		}
		else switch (selectEffect)
		{
			case 0:
			break;
			case 2:
				this.setIconIndex(textureIconIndex + 6);
				this.isOn = true;
			break;
			default:
			break;
		}
	}
	else
	{
		isInUse = false;
	}
	writeEffectsToNBT(par1ItemStack.stackTagCompound, par1ItemStack);
	readEffectsFromNBT(par1ItemStack.stackTagCompound, par1ItemStack);
	return par1ItemStack;
}

// Can it harvest the block type?
public boolean canHarvestBlock(Block par1Block)
{
	return par1Block.blockID == Block.web.blockID;
}

public ItemStack writeEffectsToNBT(NBTTagCompound tag, ItemStack item)
{
	tag.setBoolean("isOn", isOn);
	tag.setBoolean("isInUse", isInUse);
	tag.setInteger("EffectIconIndex", textureIconIndex);
	tag.setInteger("selectEffect", selectEffect);

	item.writeToNBT(tag);
	return item;
}

public void readEffectsFromNBT(NBTTagCompound tag, ItemStack item)
{
	item.readFromNBT(tag);
	NBTTagCompound nbt2 = item.stackTagCompound;
	this.isInUse = nbt2.getBoolean("isInUse");
	this.isOn = nbt2.getBoolean("isOn");
	this.selectEffect = nbt2.getInteger("selectEffect");
	this.textureIconIndex = nbt2.getInteger("effectIconIndex");
}


}

 

 

 

error log: client

 

 

---- Minecraft Crash Report ----
// Surprise! Haha. Well, this is awkward.

Time: 02/03/13 19:32
Description: Unexpected error

java.lang.NullPointerException
at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:189)
at jordan30001.testMod.common.item.tools.generic.tools.ItemSword.readEffectsFromNBT(ItemSword.java:205)
at jordan30001.testMod.common.item.tools.generic.tools.ItemSword.onItemRightClick(ItemSword.java:145)
at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:159)
at net.minecraft.client.multiplayer.PlayerControllerMP.sendUseItem(PlayerControllerMP.java:416)
at net.minecraft.client.Minecraft.clickMouse(Minecraft.java:1354)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1810)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:846)
at net.minecraft.client.Minecraft.run(Minecraft.java:771)
at java.lang.Thread.run(Unknown Source)


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

-- Head --
Stacktrace:
at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:189)
at jordan30001.testMod.common.item.tools.generic.tools.ItemSword.readEffectsFromNBT(ItemSword.java:205)
at jordan30001.testMod.common.item.tools.generic.tools.ItemSword.onItemRightClick(ItemSword.java:145)
at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:159)
at net.minecraft.client.multiplayer.PlayerControllerMP.sendUseItem(PlayerControllerMP.java:416)
at net.minecraft.client.Minecraft.clickMouse(Minecraft.java:1354)

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityClientPlayerMP['Player622'/296, l='MpServer', x=21.17, y=75.62, z=219.38]]
Chunk stats: MultiplayerChunkCache: 289
Level seed: 0
Level generator: ID 02 - largeBiomes, ver 0. Features enabled: false
Level generator options: 
Level spawn location: World: (-3,64,194), Chunk: (at 13,4,2 in -1,12; contains blocks -16,0,192 to -1,255,207), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Level time: 13652 game time, 13652 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: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 105 total; [EntityClientPlayerMP['Player622'/296, l='MpServer', x=21.17, y=75.62, z=219.38], EntityZombie['Zombie'/804, l='MpServer', x=-7.50, y=53.00, z=243.50], EntityCreeper['Creeper'/567, l='MpServer', x=-10.50, y=16.00, z=154.50], EntitySkeleton['Skeleton'/568, l='MpServer', x=-11.50, y=16.00, z=166.50], EntityZombie['Zombie'/786, l='MpServer', x=10.50, y=66.00, z=280.50], EntityEnderman['Enderman'/311, l='MpServer', x=-5.38, y=20.00, z=189.97], EntityCreeper['Creeper'/795, l='MpServer', x=-45.38, y=42.00, z=240.43], EntitySkeleton['Skeleton'/773, l='MpServer', x=94.88, y=13.00, z=182.25], EntitySpider['Spider'/782, l='MpServer', x=4.50, y=66.00, z=285.50], EntitySpider['Spider'/615, l='MpServer', x=-53.84, y=55.00, z=203.00], EntityZombie['Zombie'/613, l='MpServer', x=-24.73, y=14.00, z=179.53], EntityZombie['Zombie'/618, l='MpServer', x=-55.47, y=55.00, z=201.74], EntitySpider['Spider'/616, l='MpServer', x=-57.66, y=55.58, z=207.16], EntityZombie['Zombie'/617, l='MpServer', x=-50.50, y=56.00, z=212.99], EntityCreeper['Creeper'/326, l='MpServer', x=8.50, y=17.00, z=235.50], EntityZombie['Zombie'/327, l='MpServer', x=97.50, y=44.00, z=259.50], EntityZombie['Zombie'/626, l='MpServer', x=-19.26, y=12.05, z=222.70], EntitySquid['Squid'/866, l='MpServer', x=8.72, y=53.78, z=279.60], EntityZombie['Zombie'/625, l='MpServer', x=-13.00, y=23.00, z=231.50], EntitySquid['Squid'/867, l='MpServer', x=14.44, y=54.41, z=281.41], EntityZombie['Zombie'/624, l='MpServer', x=-12.50, y=23.00, z=232.50], EntitySkeleton['Skeleton'/868, l='MpServer', x=22.76, y=74.00, z=222.48], EntityCreeper['Creeper'/630, l='MpServer', x=-43.50, y=22.00, z=199.50], EntitySquid['Squid'/375, l='MpServer', x=14.09, y=53.05, z=278.41], EntityCreeper['Creeper'/854, l='MpServer', x=77.50, y=68.00, z=205.50], EntityZombie['Zombie'/853, l='MpServer', x=67.94, y=67.00, z=218.28], EntityZombie['Zombie'/582, l='MpServer', x=57.50, y=30.00, z=158.50], EntitySpider['Spider'/852, l='MpServer', x=-52.72, y=18.00, z=208.25], EntityZombie['Zombie'/111, l='MpServer', x=-48.50, y=27.00, z=204.50], EntityItem['item.item.dyePowder.black'/591, l='MpServer', x=11.38, y=53.13, z=278.31], EntityCreeper['Creeper'/119, l='MpServer', x=-34.38, y=17.00, z=187.44], EntityZombie['Zombie'/118, l='MpServer', x=-59.50, y=55.00, z=288.16], EntitySpider['Spider'/833, l='MpServer', x=-50.50, y=67.00, z=272.50], EntityZombie['Zombie'/115, l='MpServer', x=-56.50, y=20.00, z=235.50], EntityZombie['Zombie'/837, l='MpServer', x=0.02, y=26.00, z=199.54], EntityZombie['Zombie'/112, l='MpServer', x=-49.50, y=27.00, z=204.50], EntitySkeleton['Skeleton'/360, l='MpServer', x=48.50, y=36.00, z=186.88], EntitySkeleton['Skeleton'/123, l='MpServer', x=-43.56, y=37.00, z=226.97], EntityBat['Bat'/122, l='MpServer', x=-38.72, y=56.10, z=198.75], EntitySkeleton['Skeleton'/410, l='MpServer', x=-18.93, y=24.00, z=251.50], EntityBat['Bat'/136, l='MpServer', x=-15.56, y=15.10, z=232.75], EntityBat['Bat'/685, l='MpServer', x=-54.75, y=38.10, z=287.56], EntityBat['Bat'/683, l='MpServer', x=-53.13, y=36.72, z=284.35], EntityBat['Bat'/682, l='MpServer', x=-50.50, y=29.00, z=293.18], EntityBat['Bat'/680, l='MpServer', x=-53.22, y=14.95, z=174.06], EntityCow['Cow'/129, l='MpServer', x=-18.53, y=65.00, z=176.50], EntityBat['Bat'/678, l='MpServer', x=2.86, y=24.00, z=219.25], EntityCow['Cow'/128, l='MpServer', x=-17.47, y=65.00, z=176.50], EntitySkeleton['Skeleton'/131, l='MpServer', x=-24.91, y=57.00, z=210.44], EntityCow['Cow'/130, l='MpServer', x=-18.50, y=65.00, z=179.50], EntityCreeper['Creeper'/133, l='MpServer', x=-35.53, y=73.00, z=199.31], EntityBat['Bat'/674, l='MpServer', x=85.45, y=33.66, z=196.73], EntityCreeper['Creeper'/407, l='MpServer', x=-40.34, y=34.00, z=254.97], EntitySkeleton['Skeleton'/132, l='MpServer', x=-31.06, y=60.00, z=206.41], EntityCow['Cow'/135, l='MpServer', x=-18.66, y=66.00, z=207.50], EntityCow['Cow'/134, l='MpServer', x=-21.47, y=68.00, z=220.72], EntityZombie['Zombie'/153, l='MpServer', x=-21.03, y=60.00, z=203.50], EntityCow['Cow'/154, l='MpServer', x=-17.53, y=66.00, z=207.27], EntityCreeper['Creeper'/155, l='MpServer', x=-4.47, y=28.00, z=206.97], EntityBat['Bat'/396, l='MpServer', x=1.50, y=20.07, z=246.28], EntityCow['Cow'/150, l='MpServer', x=-15.25, y=72.00, z=152.84], EntityBat['Bat'/652, l='MpServer', x=-27.10, y=17.58, z=192.52], EntityCow['Cow'/175, l='MpServer', x=8.50, y=64.00, z=162.28], EntityCow['Cow'/174, l='MpServer', x=16.91, y=65.00, z=163.94], EntitySheep['Sheep'/163, l='MpServer', x=-3.75, y=63.00, z=261.50], EntityBat['Bat'/167, l='MpServer', x=-11.38, y=45.00, z=275.44], EntitySheep['Sheep'/166, l='MpServer', x=-10.84, y=68.00, z=272.34], EntitySheep['Sheep'/165, l='MpServer', x=-2.78, y=64.00, z=263.50], EntityBat['Bat'/642, l='MpServer', x=-44.32, y=56.88, z=206.54], EntitySheep['Sheep'/164, l='MpServer', x=-5.50, y=64.00, z=261.50], EntityCreeper['Creeper'/660, l='MpServer', x=20.31, y=53.00, z=269.27], EntityCreeper['Creeper'/661, l='MpServer', x=10.59, y=54.00, z=272.00], EntityCreeper['Creeper'/662, l='MpServer', x=20.99, y=53.00, z=268.41], EntityCow['Cow'/176, l='MpServer', x=9.28, y=64.00, z=160.22], EntityCow['Cow'/177, l='MpServer', x=4.72, y=64.00, z=162.47], EntitySkeleton['Skeleton'/183, l='MpServer', x=3.50, y=29.00, z=261.50], EntityCreeper['Creeper'/659, l='MpServer', x=22.50, y=53.00, z=276.50], EntityCow['Cow'/181, l='MpServer', x=8.96, y=64.00, z=230.01], EntityCow['Cow'/205, l='MpServer', x=57.50, y=63.00, z=286.50], EntityCow['Cow'/204, l='MpServer', x=58.88, y=44.00, z=276.19], EntityCow['Cow'/203, l='MpServer', x=62.53, y=43.17, z=284.47], EntityCreeper['Creeper'/469, l='MpServer', x=67.50, y=32.00, z=153.50], EntityCreeper['Creeper'/466, l='MpServer', x=-56.50, y=42.00, z=233.50], EntityCreeper['Creeper'/194, l='MpServer', x=38.50, y=17.00, z=220.94], EntityCow['Cow'/223, l='MpServer', x=65.50, y=64.00, z=284.50], EntityCow['Cow'/216, l='MpServer', x=69.50, y=67.00, z=163.50], EntityCow['Cow'/217, l='MpServer', x=74.53, y=67.00, z=164.22], EntityCow['Cow'/218, l='MpServer', x=72.34, y=68.00, z=169.72], EntitySkeleton['Skeleton'/219, l='MpServer', x=69.88, y=42.00, z=227.56], EntityCow['Cow'/213, l='MpServer', x=64.19, y=66.00, z=144.81], EntityCow['Cow'/214, l='MpServer', x=65.88, y=66.00, z=144.13], EntityCow['Cow'/215, l='MpServer', x=68.50, y=67.00, z=161.50], EntityCow['Cow'/210, l='MpServer', x=64.69, y=66.00, z=140.50], EntityCreeper['Creeper'/757, l='MpServer', x=51.96, y=70.00, z=178.47], EntityZombie['Zombie'/712, l='MpServer', x=-56.45, y=60.00, z=166.01], EntitySkeleton['Skeleton'/509, l='MpServer', x=62.87, y=14.00, z=235.53], EntitySkeleton['Skeleton'/510, l='MpServer', x=67.50, y=14.00, z=235.50], EntityCreeper['Creeper'/714, l='MpServer', x=-33.63, y=25.00, z=241.01], EntitySheep['Sheep'/224, l='MpServer', x=76.28, y=64.00, z=298.50], EntitySheep['Sheep'/246, l='MpServer', x=89.41, y=63.00, z=295.81], EntityCow['Cow'/247, l='MpServer', x=93.72, y=65.00, z=296.47], EntitySheep['Sheep'/244, l='MpServer', x=81.50, y=64.00, z=294.19], EntitySheep['Sheep'/245, l='MpServer', x=87.16, y=64.00, z=293.16], EntitySkeleton['Skeleton'/242, l='MpServer', x=93.50, y=60.00, z=199.50], EntityZombie['Zombie'/727, l='MpServer', x=13.50, y=64.00, z=258.50]]
Retry entities: 0 total; []
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2401)
at net.minecraft.client.Minecraft.run(Minecraft.java:794)
at java.lang.Thread.run(Unknown Source)

-- System Details --
Details:
Minecraft Version: 1.4.7
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.7.0_09, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 928719664 bytes (885 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 1521 (85176 bytes; 0 MB) allocated, 3 (168 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 71
FML: MCP v7.26 FML v4.7.4.520 Minecraft Forge 6.6.0.497 4 mods loaded, 4 mods active
mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
jordan30001TestMod [jordan30001TestMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
LWJGL: 2.4.2
OpenGL: Radeon (TM) HD 6490M GL version 4.1.10600 Compatibility Profile Context, ATI Technologies Inc.
Is Modded: Definitely; Client brand changed to 'forge,fml'
Type: Client (map_client.txt)
Texture Pack: Default
Profiler Position: N/A (disabled)
Vec3 Pool Size: 1649 (92344 bytes; 0 MB) allocated, 30 (1680 bytes; 0 MB) used

 

 

 

error log: server

 

 

[WARNING] Failed to handle packet for Player622/127.0.0.1: java.lang.NullPointerException
java.lang.NullPointerException
at net.minecraft.item.ItemStack.readFromNBT(ItemStack.java:189)
at jordan30001.testMod.common.item.tools.generic.tools.ItemSword.readEffectsFromNBT(ItemSword.java:205)
at jordan30001.testMod.common.item.tools.generic.tools.ItemSword.onItemRightClick(ItemSword.java:145)
at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:159)
at net.minecraft.item.ItemInWorldManager.tryUseItem(ItemInWorldManager.java:348)
at net.minecraft.network.NetServerHandler.handlePlace(NetServerHandler.java:555)
at net.minecraft.network.packet.Packet15Place.processPacket(Packet15Place.java:79)
at net.minecraft.network.TcpConnection.processReadPackets(TcpConnection.java:458)
at net.minecraft.network.NetServerHandler.networkTick(NetServerHandler.java:136)
at net.minecraft.network.NetworkListenThread.networkTick(NetworkListenThread.java:57)
at net.minecraft.server.dedicated.DedicatedServerListenThread.networkTick(DedicatedServerListenThread.java:34)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:703)
at net.minecraft.server.dedicated.DedicatedServer.updateTimeLightAndEntities(DedicatedServer.java:270)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:599)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:497)
at net.minecraft.server.ThreadMinecraftServer.run(ThreadMinecraftServer.java:16)

 

 

 

old code:

 

 

public class ItemSword extends Item
{
private int						weaponDamage;
private final EnumToolMaterial	toolMaterial;
private int						textureIconIndex	= 0;
private int						selectEffect		= 0;
private boolean					isOn				= false;
private boolean					isInUse				= false;

public ItemSword(int ID, EnumToolMaterial m, int tex, String name)
{
	super(ID); // The super constructor
	this.toolMaterial = m; // The material to be used
	this.maxStackSize = 1; // The max size of the itemstack
	this.setMaxDamage(m.getMaxUses()); // The durability
	this.setCreativeTab(Main.Jordan30001.Tools);
	this.weaponDamage = 4 + toolMaterial.getDamageVsEntity(); // How strong it is on enemies
	setTextureFile("/testModGFX/Items.png");
	this.setIconIndex(tex); // Sets the texture
	setItemName(name);
	this.textureIconIndex = tex;
}

// What must happen when you hit an entity
public boolean hitEntity(ItemStack item, EntityLiving e, EntityLiving p)
{
	if (isOn)
		switch (selectEffect)
		{
			case 0:
			break;//TODO
			case 1:
			break;//TODO
			case 2:
			break;
			break;//TODO 3 - 4
			default:
			break;
		}
	return true;
}

// Called on right clicking anywhere
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World,
		EntityPlayer par3EntityPlayer)
{
	if (isInUse == false)
	{
		isInUse = true;
		if (par1ItemStack.itemID == Main.getSword(0)) this.selectEffect = 1;
		else if (par1ItemStack.itemID == Main.getSword(1)) this.selectEffect = 2;
		else if (par1ItemStack.itemID == Main.getSword(2)) this.selectEffect = 3;
		else if (par1ItemStack.itemID == Main.getSword(3)) this.selectEffect = 4;
		else this.selectEffect = 0;
		if (isOn)
		{
			this.setIconIndex(textureIconIndex);
			this.isOn = false;
		}
		else switch (selectEffect)
		{
			case 0:
			break; //TODO
			case 1:
			break; //TODO
			case 2:
				this.setIconIndex(textureIconIndex + 6);
				this.isOn = true;
			break; //TODO 3 - 4
			default:
			break;
		}
	}
	else
	{
		isInUse = false;
	}
	return par1ItemStack;
}

}

 

 

Posted

There is only one Instance of every item. What differences between stack size, current damage, enchantments, etc. is ItemStack. So you need to store your variable into the stacks NBTTagCompound (which is what vanilla uses for enchantments).

 

How would I accomplish this?

Posted

Ok I figured out how to write nbt to the item but not how to read

 

public ItemStack writeEffectsToNBT(ItemStack item)
{
	NBTTagCompound tag = item.getTagCompound();
	if (tag == null) {
	 tag = new NBTTagCompound();
	 item.setTagCompound(tag);
	}
	tag.setBoolean("isOn", isOn);
	tag.setBoolean("isInUse", isInUse);
	tag.setInteger("EffectIconIndex", textureIconIndex);
	tag.setInteger("selectEffect", selectEffect);

	item.writeToNBT(tag);
	return item;
}

public void readEffectsFromNBT(ItemStack item)
{		
	this.isInUse = tag.getBoolean("isInUse");
	this.isOn = tag.getBoolean("isOn");
	this.selectEffect = tag.getInteger("selectEffect");
	this.textureIconIndex = tag.getInteger("effectIconIndex");
}

Posted

Reading is the same.

For each thing you write, you need to read it. Example

isOn = tag.getBoolean("isOn");

 

Ok I tried to read it but I get the following error:

 

public ItemStack writeEffectsToNBT(ItemStack item)
{
	NBTTagCompound tag = item.getTagCompound();
	if (tag == null) {
	 tag = new NBTTagCompound();
	 item.setTagCompound(tag);
	}
	tag.setBoolean("isOn", isOn);
	tag.setBoolean("isInUse", isInUse);
	tag.setInteger("EffectIconIndex", textureIconIndex);
	tag.setInteger("selectEffect", selectEffect);
	tag.setShort("id", (short)this.itemID);
        tag.setByte("Count", (byte) 1);
        tag.setShort("Damage", (short) item.getItemDamage());

	item.writeToNBT(tag);
	return item;
}

public void readEffectsFromNBT(ItemStack item)
{
	NBTTagCompound tag = item.getTagCompound();
	if (tag == null) 
	{
		return;
	}
	item.readFromNBT(tag);

	this.isInUse = tag.getBoolean("isInUse");
	this.isOn = tag.getBoolean("isOn");
	this.selectEffect = tag.getInteger("selectEffect");
	this.textureIconIndex = tag.getInteger("effectIconIndex");
}

 

 

error:

 


      Minecraft has crashed!      
      ----------------------      

Minecraft has stopped running because it encountered a problem; Unexpected error

A full error report has been saved to C:\Users\JLT\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-03-03_16.30.43-client.txt - Please include a copy of that file (Not this screen!) if you report this crash to anyone; without it, they will not be able to help fix the crash 



--- BEGIN ERROR REPORT 392ee87e --------
Full report at:
C:\Users\JLT\Desktop\forge\mcp\jars\.\crash-reports\crash-2013-03-03_16.30.43-client.txt
Please show that file to Mojang, NOT just this screen!

Generated 03/03/13 16:30

-- Head --
Stacktrace:
at java.util.HashMap.<init>(Unknown Source)
at java.util.HashMap.<init>(Unknown Source)
at net.minecraft.nbt.NBTTagCompound.<init>(NBTTagCompound.java:19)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:409)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)

-- Affected level --
Details:
Level name: MpServer
All players: 2 total; [EntityClientPlayerMP['Player663'/297, l='MpServer', x=4.34, y=65.62, z=202.54], EntityOtherPlayerMP['Player634'/317, l='MpServer', x=6.50, y=64.02, z=200.50]]
Chunk stats: MultiplayerChunkCache: 289
Level seed: 0
Level generator: ID 02 - largeBiomes, ver 0. Features enabled: false
Level generator options: 
Level spawn location: World: (-3,64,194), Chunk: (at 13,4,2 in -1,12; contains blocks -16,0,192 to -1,255,207), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)
Level time: 40155 game time, 40155 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: true), thunder time: 0 (now: false)
Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false
Forced entities: 104 total; [EntityClientPlayerMP['Player663'/297, l='MpServer', x=4.34, y=65.62, z=202.54], EntitySpider['Spider'/544, l='MpServer', x=-4.00, y=27.00, z=208.22], EntityZombie['Zombie'/554, l='MpServer', x=0.00, y=31.00, z=224.53], EntityZombie['Zombie'/555, l='MpServer', x=-3.50, y=31.00, z=235.50], EntityCreeper['Creeper'/306, l='MpServer', x=-19.50, y=23.00, z=236.44], EntityBat['Bat'/786, l='MpServer', x=46.52, y=36.20, z=210.70], EntityBat['Bat'/785, l='MpServer', x=50.36, y=35.68, z=192.57], EntityZombie['Zombie'/311, l='MpServer', x=-72.50, y=58.00, z=252.50], EntityOtherPlayerMP['Player634'/317, l='MpServer', x=6.50, y=64.02, z=200.50], EntitySkeleton['Skeleton'/774, l='MpServer', x=-6.54, y=20.95, z=195.69], EntitySkeleton['Skeleton'/775, l='MpServer', x=-11.99, y=19.00, z=188.41], EntitySkeleton['Skeleton'/768, l='MpServer', x=52.50, y=68.00, z=135.50], EntitySquid['Squid'/780, l='MpServer', x=-21.80, y=51.75, z=168.73], EntityZombie['Zombie'/543, l='MpServer', x=-11.47, y=22.00, z=208.84], EntitySquid['Squid'/781, l='MpServer', x=-23.90, y=53.38, z=166.50], EntitySkeleton['Skeleton'/778, l='MpServer', x=-32.50, y=42.92, z=252.80], EntitySquid['Squid'/779, l='MpServer', x=-22.92, y=53.00, z=167.54], EntitySkeleton['Skeleton'/777, l='MpServer', x=-33.48, y=43.00, z=252.03], EntityZombie['Zombie'/538, l='MpServer', x=4.78, y=44.00, z=271.47], EntitySkeleton['Skeleton'/608, l='MpServer', x=19.91, y=72.00, z=146.50], EntityBat['Bat'/79, l='MpServer', x=-49.30, y=23.70, z=181.34], EntitySkeleton['Skeleton'/334, l='MpServer', x=16.50, y=65.00, z=271.50], EntityBat['Bat'/580, l='MpServer', x=-49.66, y=29.14, z=206.59], EntityBat['Bat'/581, l='MpServer', x=-30.52, y=27.85, z=223.53], EntityEnderman['Enderman'/368, l='MpServer', x=-57.50, y=57.00, z=214.50], EntityBat['Bat'/99, l='MpServer', x=-23.01, y=15.59, z=212.80], EntityCreeper['Creeper'/371, l='MpServer', x=-69.47, y=56.00, z=221.00], EntityBat['Bat'/118, l='MpServer', x=-38.83, y=53.66, z=209.05], EntitySkeleton['Skeleton'/116, l='MpServer', x=-31.84, y=22.00, z=209.50], EntitySkeleton['Skeleton'/359, l='MpServer', x=49.13, y=65.00, z=228.34], EntityZombie['Zombie'/115, l='MpServer', x=-37.50, y=60.00, z=191.50], EntityZombie['Zombie'/601, l='MpServer', x=7.50, y=71.00, z=143.50], EntitySpider['Spider'/603, l='MpServer', x=30.50, y=72.00, z=150.50], EntitySkeleton['Skeleton'/361, l='MpServer', x=39.50, y=65.00, z=223.50], EntitySkeleton['Skeleton'/607, l='MpServer', x=24.34, y=72.00, z=146.97], EntityBat['Bat'/121, l='MpServer', x=-10.92, y=43.70, z=248.21], EntityEnderman['Enderman'/136, l='MpServer', x=-27.38, y=45.00, z=242.25], EntitySkeleton['Skeleton'/685, l='MpServer', x=47.50, y=36.00, z=192.50], EntityCow['Cow'/129, l='MpServer', x=-18.53, y=65.00, z=176.50], EntityCow['Cow'/128, l='MpServer', x=-17.47, y=65.00, z=176.50], EntityCow['Cow'/131, l='MpServer', x=-26.45, y=71.00, z=184.13], EntityCow['Cow'/130, l='MpServer', x=-18.50, y=65.00, z=179.50], EntitySkeleton['Skeleton'/133, l='MpServer', x=-30.97, y=60.00, z=206.59], EntityCow['Cow'/135, l='MpServer', x=-22.41, y=67.00, z=230.38], EntitySheep['Sheep'/159, l='MpServer', x=-8.91, y=66.00, z=262.03], EntityCreeper['Creeper'/690, l='MpServer', x=36.50, y=12.00, z=220.50], EntityCow['Cow'/150, l='MpServer', x=-15.25, y=72.00, z=152.84], EntityBat['Bat'/440, l='MpServer', x=45.19, y=23.75, z=226.11], EntityCow['Cow'/174, l='MpServer', x=-5.81, y=64.00, z=167.19], EntityCow['Cow'/173, l='MpServer', x=14.22, y=65.00, z=163.09], EntityCow['Cow'/172, l='MpServer', x=7.47, y=64.00, z=159.63], EntityBat['Bat'/645, l='MpServer', x=-23.53, y=62.26, z=237.95], EntitySheep['Sheep'/163, l='MpServer', x=-16.47, y=68.00, z=276.38], EntityBat['Bat'/644, l='MpServer', x=-40.75, y=57.77, z=225.91], EntitySheep['Sheep'/161, l='MpServer', x=-4.50, y=64.00, z=262.81], EntityBat['Bat'/435, l='MpServer', x=-26.88, y=16.30, z=200.48], EntitySheep['Sheep'/160, l='MpServer', x=-4.63, y=67.00, z=270.75], EntityBat['Bat'/641, l='MpServer', x=-27.19, y=60.25, z=231.81], EntityBat['Bat'/437, l='MpServer', x=-24.48, y=12.66, z=241.57], EntityBat['Bat'/642, l='MpServer', x=-29.68, y=59.61, z=229.57], EntityBat['Bat'/439, l='MpServer', x=43.70, y=23.00, z=230.50], EntityBat['Bat'/424, l='MpServer', x=-34.25, y=26.10, z=205.75], EntityBat['Bat'/427, l='MpServer', x=-32.47, y=63.10, z=202.31], EntityCow['Cow'/188, l='MpServer', x=7.53, y=64.00, z=157.31], EntityCow['Cow'/182, l='MpServer', x=-6.81, y=64.00, z=235.75], EntityItem['item.item.jordan30001ZeusShovel'/180, l='MpServer', x=5.53, y=64.13, z=209.66], EntityItem['item.item.jordan30001ZeusShovel'/181, l='MpServer', x=6.03, y=64.13, z=209.75], EntityCreeper['Creeper'/478, l='MpServer', x=44.50, y=55.00, z=199.50], EntitySkeleton['Skeleton'/746, l='MpServer', x=-17.50, y=43.00, z=281.50], EntitySkeleton['Skeleton'/745, l='MpServer', x=-18.50, y=43.00, z=282.50], EntityWolf['Wolf'/207, l='MpServer', x=79.53, y=67.00, z=126.22], EntitySkeleton['Skeleton'/744, l='MpServer', x=-19.50, y=43.00, z=281.50], EntityCow['Cow'/201, l='MpServer', x=58.59, y=46.00, z=272.38], EntityZombie['Zombie'/749, l='MpServer', x=-58.50, y=58.00, z=188.50], EntityCreeper['Creeper'/748, l='MpServer', x=-52.50, y=17.00, z=223.50], EntityCreeper['Creeper'/471, l='MpServer', x=-55.50, y=26.00, z=218.50], EntityZombie['Zombie'/468, l='MpServer', x=79.50, y=34.00, z=146.50], EntityZombie['Zombie'/469, l='MpServer', x=74.66, y=33.00, z=148.04], EntitySkeleton['Skeleton'/743, l='MpServer', x=-21.50, y=43.00, z=279.50], EntityZombie['Zombie'/467, l='MpServer', x=73.78, y=33.00, z=148.00], EntityCow['Cow'/195, l='MpServer', x=56.25, y=67.00, z=134.34], EntityZombie['Zombie'/762, l='MpServer', x=-30.50, y=31.00, z=244.50], EntityCreeper['Creeper'/760, l='MpServer', x=-31.50, y=31.00, z=252.50], EntitySkeleton['Skeleton'/761, l='MpServer', x=-29.50, y=31.00, z=252.50], EntityZombie['Zombie'/459, l='MpServer', x=71.50, y=71.00, z=202.50], EntitySkeleton['Skeleton'/767, l='MpServer', x=51.50, y=68.00, z=134.50], EntityZombie['Zombie'/458, l='MpServer', x=66.50, y=71.00, z=203.50], EntitySkeleton['Skeleton'/764, l='MpServer', x=-29.88, y=71.00, z=187.69], EntitySkeleton['Skeleton'/765, l='MpServer', x=55.50, y=68.00, z=135.50], EntityCow['Cow'/219, l='MpServer', x=64.06, y=64.00, z=283.06], EntityCow['Cow'/212, l='MpServer', x=69.59, y=67.00, z=163.50], EntityCow['Cow'/213, l='MpServer', x=75.81, y=68.00, z=165.19], EntityCow['Cow'/214, l='MpServer', x=72.34, y=68.00, z=169.72], EntitySpider['Spider'/215, l='MpServer', x=71.50, y=67.00, z=164.09], EntityCow['Cow'/208, l='MpServer', x=64.84, y=67.00, z=134.72], EntityCreeper['Creeper'/759, l='MpServer', x=-28.50, y=31.00, z=250.50], EntityCow['Cow'/209, l='MpServer', x=65.41, y=67.00, z=135.94], EntityCow['Cow'/210, l='MpServer', x=65.88, y=66.00, z=144.13], EntityZombie['Zombie'/757, l='MpServer', x=-32.50, y=21.00, z=233.50], EntityCow['Cow'/211, l='MpServer', x=69.84, y=68.00, z=167.19], EntitySkeleton['Skeleton'/508, l='MpServer', x=-34.50, y=69.00, z=227.50], EntitySpider['Spider'/704, l='MpServer', x=-9.50, y=21.00, z=209.50], EntityZombie['Zombie'/720, l='MpServer', x=-45.50, y=23.00, z=208.50], EntityCreeper['Creeper'/723, l='MpServer', x=-43.50, y=64.00, z=254.50]]
Retry entities: 0 total; []
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:440)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2401)
at net.minecraft.client.Minecraft.run(Minecraft.java:794)
at java.lang.Thread.run(Unknown Source)

-- System Details --
Details:
Minecraft Version: 1.4.7
Operating System: Windows 7 (x86) version 6.1
Java Version: 1.7.0_09, Oracle Corporation
Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
Memory: 735543792 bytes (701 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
AABB Pool Size: 1439 (80584 bytes; 0 MB) allocated, 3 (168 bytes; 0 MB) used
Suspicious classes: FML and Forge are installed
IntCache: cache: 0, tcache: 0, allocated: 3, tallocated: 71
FML: MCP v7.26 FML v4.7.4.520 Minecraft Forge 6.6.0.497 4 mods loaded, 4 mods active
mcp [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
FML [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
Forge [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
jordan30001TestMod [jordan30001TestMod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available
LWJGL: 2.4.2
OpenGL: Radeon (TM) HD 6490M GL version 4.1.10600 Compatibility Profile Context, ATI Technologies Inc.
Is Modded: Definitely; Client brand changed to 'forge,fml'
Type: Client (map_client.txt)
Texture Pack: Default
Profiler Position: N/A (disabled)
Vec3 Pool Size: 1648 (92288 bytes; 0 MB) allocated, 21 (1176 bytes; 0 MB) used

java.lang.StackOverflowError
at java.util.HashMap.<init>(Unknown Source)
at java.util.HashMap.<init>(Unknown Source)
at net.minecraft.nbt.NBTTagCompound.<init>(NBTTagCompound.java:19)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:409)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:415)
--- END ERROR REPORT 261950be ----------

 

Posted

so i can read the values when the server restarts ect

 

Ok so I am left with code below but I still get the same nbt stack overload as above

 

public ItemStack writeEffectsToNBT(ItemStack item)
{
	NBTTagCompound tag = item.getTagCompound();
	if (tag == null) {
	 tag = new NBTTagCompound();
	 item.setTagCompound(tag);
	}
	tag.setBoolean("isOn", isOn);
	tag.setBoolean("isInUse", isInUse);
	tag.setInteger("EffectIconIndex", textureIconIndex);
	tag.setInteger("selectEffect", selectEffect);

	item.writeToNBT(tag);
	return item;
}

Posted

Please explain what you are trying to do. You seem to have misunderstood something really badly.

 

 

 

onHitEntity()

we are checking if(isOn) is true if it is then we switch(selectEffect)

 

for this instance selectEffect is always going to be 2.

 

it will switch to case 2 and then do somthing (sniped because this works and isnt the problem)

 

onItemRightClick()

 

firstly it checks to see if(isInUse == false)

if its not in use it sets isInUse to true

it will then check what the current items ID is and set selectEffect acordingly

 

it will then check if(isOn == true)

if it is it sets this.setIconIndex(textureIconIndex)

and sets isOn to false

 

it then switches over selectEffect

 

case 2

sets this.setIconIndex(textureIconIndex + 6);

else if(isInUse == true) set isInUse to false

 

writeEffectsToNBT is called

 

returns itemStack

 

 

now on right click I want it to set the 4 variables

textureIconIndex

selectEffect

isOn

isInUse

 

and then save them to nbt (only for this one specific item not for every item of the same id)

 

and when the game loads up ect and the variables are reset I want it to read the saved nbt and load it for this specific item

public class ItemSword extends Item
{
private int						weaponDamage;
private final EnumToolMaterial	toolMaterial;
private int						textureIconIndex	= 0;
private int						selectEffect		= 0;
private boolean					isOn				= false;
private boolean					isInUse				= false;

public ItemSword(int ID, EnumToolMaterial m, int tex, String name)
{
	super(ID); // The super constructor
	this.toolMaterial = m; // The material to be used
	this.maxStackSize = 1; // The max size of the itemstack
	this.setMaxDamage(m.getMaxUses()); // The durability
	this.setCreativeTab(Main.tabGems);
	this.weaponDamage = 4 + toolMaterial.getDamageVsEntity(); // How strong it is on enemies
	setTextureFile("/testModGFX/Items.png");
	this.setIconIndex(tex); // Sets the texture
	setItemName(name);
	this.textureIconIndex = tex;
}

// What must happen when you hit an entity
public boolean hitEntity(ItemStack item, EntityLiving e, EntityLiving p)
{
	if (isOn)
		switch (selectEffect)
		{
			case 0:
			break;
			case 2:
			break;
			default:
			break;
		}
	return true;
}


// Called on right clicking anywhere
public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World,
		EntityPlayer par3EntityPlayer)
{
	if (isInUse == false)
	{
		isInUse = true;
		if (par1ItemStack.itemID == Main.getSword(0)) this.selectEffect = 1;
		else if (par1ItemStack.itemID == Main.getSword(1)) this.selectEffect = 2;
		else if (par1ItemStack.itemID == Main.getSword(2)) this.selectEffect = 3;
		else if (par1ItemStack.itemID == Main.getSword(3)) this.selectEffect = 4;
		else this.selectEffect = 0;
		if (isOn)
		{
			this.setIconIndex(textureIconIndex);
			this.isOn = false;
		}
		else switch (selectEffect)
		{
			case 0:
			break;
			case 2:
				this.setIconIndex(textureIconIndex + 6);
				this.isOn = true;
			break;
			default:
			break;
		}
	}
	else
	{
		isInUse = false;
	}
	writeEffectsToNBT(par1ItemStack);
	return par1ItemStack;
}

public ItemStack writeEffectsToNBT(ItemStack item)
{
	NBTTagCompound tag = item.getTagCompound();
	if (tag == null) {
	 tag = new NBTTagCompound();
	 item.setTagCompound(tag);
	}
	tag.setBoolean("isOn", isOn);
	tag.setBoolean("isInUse", isInUse);
	tag.setInteger("EffectIconIndex", textureIconIndex);
	tag.setInteger("selectEffect", selectEffect);

	item.writeToNBT(tag);
	return item;
}
}

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

    • should the changes apply only to the listed ores, or do you want a more comprehensive overhaul of resource progression?
    • The information provided isn’t quite enough to pinpoint the issue. It would be helpful to know more about your setup. For instance, what screen recording software are you using, and is it set to capture the game window, full screen, or your entire desktop?
    • I had the same issue, so I ended up registering through gmail
    • I am trying to make an attack animation works for this entity, I have followed tutorials on youtube, looked into Geckolib's documentation but I can't find why it isn't working. The walking animation works, the mob recognizes the player and attack them. The model and animations were made in Blockbench.   public class RedSlimeEntity extends TensuraTamableEntity implements IAnimatable { private final AnimationFactory factory = GeckoLibUtil.createFactory(this); private boolean swinging; private long lastAttackTime; public RedSlimeEntity(EntityType<? extends RedSlimeEntity> type, Level worldIn) { super(type, worldIn); this.xpReward = 20; } public static AttributeSupplier.Builder createAttributes() { AttributeSupplier.Builder builder = Mob.createMobAttributes(); builder = builder.add(Attributes.MOVEMENT_SPEED, 0.1); builder = builder.add(Attributes.MAX_HEALTH, 50); builder = builder.add(Attributes.ARMOR, 0); builder = builder.add(Attributes.ATTACK_DAMAGE, 25); builder = builder.add(Attributes.FOLLOW_RANGE, 16); return builder; } public static void init() { } @Override protected void registerGoals() { this.goalSelector.addGoal(3, new FloatGoal(this)); this.goalSelector.addGoal(1, new RedSlimeAttackGoal(this, 1.2D, false)); this.goalSelector.addGoal(4, new WaterAvoidingRandomStrollGoal(this, 1.0D)); this.goalSelector.addGoal(5, new RandomLookAroundGoal(this)); this.goalSelector.addGoal(2, new RedSlimeAttackGoal.StopNearPlayerGoal(this, 1)); this.targetSelector.addGoal(2, new NearestAttackableTargetGoal<>(this, Player.class, true)); } private <E extends IAnimatable> PlayState predicate(AnimationEvent<E> event) { if (event.isMoving()) { event.getController().setAnimation(new AnimationBuilder().addAnimation("animation.model.walk", true)); return PlayState.CONTINUE; } event.getController().setAnimation(new AnimationBuilder().addAnimation("animation.model.idle", true)); return PlayState.CONTINUE; } private <E extends IAnimatable> PlayState attackPredicate(AnimationEvent<E> event) { if (this.swinging && event.getController().getAnimationState() == AnimationState.Stopped) { event.getController().setAnimation(new AnimationBuilder().addAnimation("animation.model.attack", false)); this.swinging = false; return PlayState.CONTINUE; } return PlayState.STOP; } @Override public void swing(InteractionHand hand, boolean updateSelf) { super.swing(hand, updateSelf); this.swinging = true; } @Override public void registerControllers(AnimationData data) { data.addAnimationController(new AnimationController<>(this, "controller", 0, this::predicate)); data.addAnimationController(new AnimationController<>(this, "attackController", 0, this::attackPredicate)); } @Override public AnimationFactory getFactory() { return factory; } class RedSlimeAttackGoal extends MeleeAttackGoal { private final RedSlimeEntity entity; public RedSlimeAttackGoal(RedSlimeEntity entity, double speedModifier, boolean longMemory) { super(entity, speedModifier, longMemory); this.entity = entity; if (this.mob.getTarget() != null && this.mob.getTarget().isAlive()) { long currentTime = this.entity.level.getGameTime(); if (!this.entity.swinging && currentTime - this.entity.lastAttackTime > 20) { // 20 ticks = 1 second this.entity.swinging = true; this.entity.lastAttackTime = currentTime; } } } protected double getAttackReach(LivingEntity target) { return this.mob.getBbWidth() * 2.0F * this.mob.getBbWidth() * 2.0F + target.getBbWidth(); } @Override protected void checkAndPerformAttack(LivingEntity target, double distToEnt) { double reach = this.getAttackReach(target); if (distToEnt <= reach && this.getTicksUntilNextAttack() <= 0) { this.resetAttackCooldown(); this.entity.swinging = true; this.mob.doHurtTarget(target); } } public static class StopNearPlayerGoal extends Goal { private final Mob mob; private final double stopDistance; public StopNearPlayerGoal(Mob mob, double stopDistance) { this.mob = mob; this.stopDistance = stopDistance; } @Override public boolean canUse() { Player nearestPlayer = this.mob.level.getNearestPlayer(this.mob, stopDistance); if (nearestPlayer != null) { double distanceSquared = this.mob.distanceToSqr(nearestPlayer); return distanceSquared < (stopDistance * stopDistance); } return false; } @Override public void tick() { // Stop movement this.mob.getNavigation().stop(); } @Override public boolean canContinueToUse() { Player nearestPlayer = this.mob.level.getNearestPlayer(this.mob, stopDistance); if (nearestPlayer != null) { double distanceSquared = this.mob.distanceToSqr(nearestPlayer); return distanceSquared < (stopDistance * stopDistance); } return false; } } @Override public void tick() { super.tick(); if (this.mob.getTarget() != null && this.mob.getTarget().isAlive()) { if (!this.entity.swinging) { this.entity.swinging = true; } } } } @Override public @Nullable AgeableMob getBreedOffspring(ServerLevel serverLevel, AgeableMob ageableMob) { return null; } @Override public int getRemainingPersistentAngerTime() { return 0; } @Override public void setRemainingPersistentAngerTime(int i) { } @Override public @Nullable UUID getPersistentAngerTarget() { return null; } @Override public void setPersistentAngerTarget(@Nullable UUID uuid) { } @Override public void startPersistentAngerTimer() { } protected void playStepSound(BlockPos pos, BlockState blockIn) { this.playSound(SoundEvents.SLIME_SQUISH, 0.15F, 1.0F); } protected SoundEvent getAmbientSound() { return SoundEvents.SLIME_SQUISH; } protected SoundEvent getHurtSound(DamageSource damageSourceIn) { return SoundEvents.SLIME_HURT; } protected SoundEvent getDeathSound() { return SoundEvents.SLIME_DEATH; } protected float getSoundVolume() { return 0.2F; } }  
    • CAN ANYBODY HELP ME? JVM info: Oracle Corporation - 1.8.0_431 - 25.431-b10 java.net.preferIPv4Stack=true Current Time: 15/01/2025 17:45:17 Host: files.minecraftforge.net [104.21.58.163, 172.67.161.211] Host: maven.minecraftforge.net [172.67.161.211, 104.21.58.163] Host: libraries.minecraft.net [127.0.0.1] Host: launchermeta.mojang.com [127.0.0.1] Host: piston-meta.mojang.com [127.0.0.1] Host: sessionserver.mojang.com [127.0.0.1] Host: authserver.mojang.com [Unknown] Error checking https://launchermeta.mojang.com/: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target Data kindly mirrored by CreeperHost at https://www.creeperhost.net/ Considering minecraft server jar Downloading libraries Found 1 additional library directories Considering library cpw.mods:securejarhandler:2.1.10   Downloading library from https://maven.creeperhost.net/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm/9.7.1/asm-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-commons:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-commons/9.7.1/asm-commons-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-tree:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-tree/9.7.1/asm-tree-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-util:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-util/9.7.1/asm-util-9.7.1.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-analysis:9.7.1   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-analysis/9.7.1/asm-analysis-9.7.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:accesstransformers:8.0.4   Downloading library from https://maven.creeperhost.net/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar     Download completed: Checksum validated. Considering library org.antlr:antlr4-runtime:4.9.1   Downloading library from https://maven.creeperhost.net/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:eventbus:6.0.5   Downloading library from https://maven.creeperhost.net/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar     Download completed: Checksum validated. Considering library net.minecraftforge:forgespi:7.0.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:coremods:5.2.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/coremods/5.2.1/coremods-5.2.1.jar     Download completed: Checksum validated. Considering library cpw.mods:modlauncher:10.0.9   Downloading library from https://maven.creeperhost.net/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar     Download completed: Checksum validated. Considering library net.minecraftforge:unsafe:0.2.0   Downloading library from https://maven.creeperhost.net/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar     Download completed: Checksum validated. Considering library net.minecraftforge:mergetool:1.1.5:api   Downloading library from https://maven.creeperhost.net/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar     Download completed: Checksum validated. Considering library com.electronwill.night-config:core:3.6.4   Downloading library from https://maven.creeperhost.net/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar     Download completed: Checksum validated. Considering library com.electronwill.night-config:toml:3.6.4   Downloading library from https://maven.creeperhost.net/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar     Download completed: Checksum validated. Considering library org.apache.maven:maven-artifact:3.8.5   Downloading library from https://maven.creeperhost.net/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar     Download completed: Checksum validated. Considering library net.jodah:typetools:0.6.3   Downloading library from https://maven.creeperhost.net/net/jodah/typetools/0.6.3/typetools-0.6.3.jar     Download completed: Checksum validated. Considering library net.minecrell:terminalconsoleappender:1.2.0   Downloading library from https://maven.creeperhost.net/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar     Download completed: Checksum validated. Considering library org.jline:jline-reader:3.12.1   Downloading library from https://maven.creeperhost.net/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar     Download completed: Checksum validated. Considering library org.jline:jline-terminal:3.12.1   Downloading library from https://maven.creeperhost.net/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar     Download completed: Checksum validated. Considering library org.spongepowered:mixin:0.8.5   Downloading library from https://maven.creeperhost.net/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar     Download completed: Checksum validated. Considering library org.openjdk.nashorn:nashorn-core:15.4   Downloading library from https://maven.creeperhost.net/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar     Download completed: Checksum validated. Considering library net.minecraftforge:JarJarSelector:0.3.19   Downloading library from https://maven.creeperhost.net/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar     Download completed: Checksum validated. Considering library net.minecraftforge:JarJarMetadata:0.3.19   Downloading library from https://maven.creeperhost.net/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar     Download completed: Checksum validated. Considering library cpw.mods:bootstraplauncher:1.1.2   Downloading library from https://maven.creeperhost.net/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar     Download completed: Checksum validated. Considering library net.minecraftforge:JarJarFileSystems:0.3.19   Downloading library from https://maven.creeperhost.net/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlloader:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/fmlloader/1.20.1-47.3.12/fmlloader-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlearlydisplay:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/fmlearlydisplay/1.20.1-47.3.12/fmlearlydisplay-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library com.github.jponge:lzma-java:1.3   Downloading library from https://maven.creeperhost.net/com/github/jponge/lzma-java/1.3/lzma-java-1.3.jar     Download completed: Checksum validated. Considering library com.google.code.findbugs:jsr305:3.0.2   Downloading library from https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar Failed to establish connection to https://libraries.minecraft.net/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library com.google.code.gson:gson:2.10.1   Downloading library from https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar Failed to establish connection to https://libraries.minecraft.net/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library com.google.errorprone:error_prone_annotations:2.1.3   Downloading library from https://maven.creeperhost.net/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar     Download completed: Checksum validated. Considering library com.google.guava:guava:25.1-jre   Downloading library from https://maven.creeperhost.net/com/google/guava/guava/25.1-jre/guava-25.1-jre.jar     Download completed: Checksum validated. Considering library com.google.j2objc:j2objc-annotations:1.1   Downloading library from https://maven.creeperhost.net/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar     Download completed: Checksum validated. Considering library com.nothome:javaxdelta:2.0.1   Downloading library from https://maven.creeperhost.net/com/nothome/javaxdelta/2.0.1/javaxdelta-2.0.1.jar     Download completed: Checksum validated. Considering library commons-io:commons-io:2.4   Downloading library from https://libraries.minecraft.net/commons-io/commons-io/2.4/commons-io-2.4.jar Failed to establish connection to https://libraries.minecraft.net/commons-io/commons-io/2.4/commons-io-2.4.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library de.oceanlabs.mcp:mcp_config:1.20.1-20230612.114412@zip   Downloading library from https://maven.creeperhost.net/de/oceanlabs/mcp/mcp_config/1.20.1-20230612.114412/mcp_config-1.20.1-20230612.114412.zip     Download completed: Checksum validated. Considering library de.siegmar:fastcsv:2.2.2   Downloading library from https://maven.creeperhost.net/de/siegmar/fastcsv/2.2.2/fastcsv-2.2.2.jar     Download completed: Checksum validated. Considering library net.minecraftforge:ForgeAutoRenamingTool:0.1.22:all   Downloading library from https://maven.creeperhost.net/net/minecraftforge/ForgeAutoRenamingTool/0.1.22/ForgeAutoRenamingTool-0.1.22-all.jar     Download completed: Checksum validated. Considering library net.minecraftforge:binarypatcher:1.1.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/binarypatcher/1.1.1/binarypatcher-1.1.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlcore:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/fmlcore/1.20.1-47.3.12/fmlcore-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:fmlearlydisplay:1.20.1-47.3.12   File exists: Checksum validated. Considering library net.minecraftforge:fmlloader:1.20.1-47.3.12   File exists: Checksum validated. Considering library net.minecraftforge:forge:1.20.1-47.3.12:universal   Downloading library from https://maven.creeperhost.net/net/minecraftforge/forge/1.20.1-47.3.12/forge-1.20.1-47.3.12-universal.jar     Download completed: Checksum validated. Considering library net.minecraftforge:installertools:1.4.1   Downloading library from https://maven.creeperhost.net/net/minecraftforge/installertools/1.4.1/installertools-1.4.1.jar     Download completed: Checksum validated. Considering library net.minecraftforge:jarsplitter:1.1.4   Downloading library from https://maven.creeperhost.net/net/minecraftforge/jarsplitter/1.1.4/jarsplitter-1.1.4.jar     Download completed: Checksum validated. Considering library net.minecraftforge:javafmllanguage:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/javafmllanguage/1.20.1-47.3.12/javafmllanguage-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:lowcodelanguage:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/lowcodelanguage/1.20.1-47.3.12/lowcodelanguage-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:mclanguage:1.20.1-47.3.12   Downloading library from https://maven.creeperhost.net/net/minecraftforge/mclanguage/1.20.1-47.3.12/mclanguage-1.20.1-47.3.12.jar     Download completed: Checksum validated. Considering library net.minecraftforge:srgutils:0.4.3   Downloading library from https://maven.creeperhost.net/net/minecraftforge/srgutils/0.4.3/srgutils-0.4.3.jar     Download completed: Checksum validated. Considering library net.minecraftforge:srgutils:0.4.9   Downloading library from https://maven.creeperhost.net/net/minecraftforge/srgutils/0.4.9/srgutils-0.4.9.jar     Download completed: Checksum validated. Considering library net.minecraftforge:srgutils:0.5.6   Downloading library from https://maven.creeperhost.net/net/minecraftforge/srgutils/0.5.6/srgutils-0.5.6.jar     Download completed: Checksum validated. Considering library net.sf.jopt-simple:jopt-simple:5.0.4   Downloading library from https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar Failed to establish connection to https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar  Host: libraries.minecraft.net [127.0.0.1] javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.ssl.Alert.createSSLException(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.TransportContext.fatal(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.checkServerCerts(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.onConsumeCertificate(Unknown Source)     at sun.security.ssl.CertificateMessage$T13CertificateConsumer.consume(Unknown Source)     at sun.security.ssl.SSLHandshake.consume(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.HandshakeContext.dispatch(Unknown Source)     at sun.security.ssl.TransportContext.dispatch(Unknown Source)     at sun.security.ssl.SSLTransport.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.decode(Unknown Source)     at sun.security.ssl.SSLSocketImpl.readHandshakeRecord(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.security.ssl.SSLSocketImpl.startHandshake(Unknown Source)     at sun.net.www.protocol.https.HttpsClient.afterConnect(Unknown Source)     at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)     at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)     at java.net.HttpURLConnection.getResponseCode(Unknown Source)     at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(Unknown Source)     at net.minecraftforge.installer.DownloadUtils.getConnection(DownloadUtils.java:240)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:174)     at net.minecraftforge.installer.DownloadUtils.download(DownloadUtils.java:164)     at net.minecraftforge.installer.DownloadUtils.downloadLibrary(DownloadUtils.java:149)     at net.minecraftforge.installer.actions.Action.downloadLibraries(Action.java:73)     at net.minecraftforge.installer.actions.ServerInstall.run(ServerInstall.java:72)     at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:271)     at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182)     at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.validator.PKIXValidator.doBuild(Unknown Source)     at sun.security.validator.PKIXValidator.engineValidate(Unknown Source)     at sun.security.validator.Validator.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.validate(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkTrusted(Unknown Source)     at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(Unknown Source)     ... 27 more Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target     at sun.security.provider.certpath.SunCertPathBuilder.build(Unknown Source)     at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(Unknown Source)     at java.security.cert.CertPathBuilder.build(Unknown Source)     ... 33 more Considering library net.sf.jopt-simple:jopt-simple:6.0-alpha-3   Downloading library from https://maven.creeperhost.net/net/sf/jopt-simple/jopt-simple/6.0-alpha-3/jopt-simple-6.0-alpha-3.jar     Download completed: Checksum validated. Considering library org.checkerframework:checker-qual:2.0.0   Downloading library from https://maven.creeperhost.net/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.jar     Download completed: Checksum validated. Considering library org.codehaus.mojo:animal-sniffer-annotations:1.14   Downloading library from https://maven.creeperhost.net/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-analysis:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-analysis/9.2/asm-analysis-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-commons:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-commons/9.2/asm-commons-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-commons:9.6   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-commons/9.6/asm-commons-9.6.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-tree:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-tree/9.2/asm-tree-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm-tree:9.6   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm-tree/9.6/asm-tree-9.6.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm:9.2   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm/9.2/asm-9.2.jar     Download completed: Checksum validated. Considering library org.ow2.asm:asm:9.6   Downloading library from https://maven.creeperhost.net/org/ow2/asm/asm/9.6/asm-9.6.jar     Download completed: Checksum validated. Considering library trove:trove:1.0.2   Downloading library from https://maven.creeperhost.net/trove/trove/1.0.2/trove-1.0.2.jar     Download completed: Checksum validated. These libraries failed to download. Try again. com.google.code.findbugs:jsr305:3.0.2 com.google.code.gson:gson:2.10.1 commons-io:commons-io:2.4 net.sf.jopt-simple:jopt-simple:5.0.4 There was an error during installation  
  • Topics

×
×
  • Create New...

Important Information

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