Jump to content

[1.4.7][updated OP] special effects on items


jordan30001

Recommended Posts

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;
}

}

 

 

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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");
}

Link to comment
Share on other sites

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 ----------

 

Link to comment
Share on other sites

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;
}

Link to comment
Share on other sites

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;
}
}

Link to comment
Share on other sites

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

    • Hello, I'm trying to modify the effects of native enchantments for bows and arrows in Minecraft. After using a decompilation tool, I found that the specific implementations of native bow and arrow enchantments (including `ArrowDamageEnchantment`, `ArrowKnockbackEnchantment`, `ArrowFireEnchantment`, `ArrowInfiniteEnchantment`, `ArrowPiercingEnchantment`) do not contain any information about the enchantment effects (such as the `getDamageProtection` function for `ProtectionEnchantment`, `getDamageBonus` function for `DamageEnchantment`, etc.). Upon searching for the base class of arrows, `AbstractArrow`, I found a function named setEnchantmentEffectsFromEntity`, which seems to be used to retrieve the enchantment levels of the tool held by a `LivingEntity` and calculate the specific values of the enchantment effects. However, after testing with the following code, I found that this function is not being called:   @Mixin(AbstractArrow.class) public class ModifyArrowEnchantmentEffects {     private static final Logger LOGGER = LogUtils.getLogger();     @Inject(         method = "setEnchantmentEffectsFromEntity",         at = @At("HEAD")     )     private void logArrowEnchantmentEffectsFromEntity(CallbackInfo ci) {         LOGGER.info("Arrow enchantment effects from entity");     } }   Upon further investigation, I found that within the onHitEntity method, there are several lines of code:               if (!this.level().isClientSide &amp;&amp; entity1 instanceof LivingEntity) {                EnchantmentHelper.doPostHurtEffects(livingentity, entity1);                EnchantmentHelper.doPostDamageEffects((LivingEntity)entity1, livingentity);             }   These lines of code actually call the doPostHurt and doPostAttack methods of each enchantment in the enchantment list. However, this leads back to the issue because native bow and arrow enchantments do not implement these functions. Although their base class defines the functions, they are empty. At this point, I'm completely stumped and seeking assistance. Thank you.
    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
  • Topics

×
×
  • Create New...

Important Information

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