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

    • I have made a post shader with all of it's files (in post and program) being finished, it's just an edited creeper post shader for now. How do I load it ingame?  Minecraft.getInstance().gameRenderer.loadEffect(new ResourceLocation("thedefused:shaders/post/creep.json")); This just gives an error due to it trying to find program in minecraft:shaders/program However, I have seen multiple mods use post shaders. how?
    • Hello. I've been having a problem when launching minecraft forge. It just doesn't open the game, and leaves me with this "(exit code 1)" error. Both regular and optifine versions of minecraft launch just fine, tried both with 1.18.2 and 1.20.1. I can assure that my drivers are updated so that can't be it, and i've tried using Java 17, 18 and 21 to no avail. Even with no mods installed, the thing won't launch. I'll leave the log here, although it's in spanish: https://jmp.sh/s/FPqGBSi30fzKJDt2M1gc My specs are this: Ryzen 3 4100 || Radeon R9 280x || 16gb ram || Windows 10 I'd appreciate any help, thank you in advance.
    • Hey, Me and my friends decided to start up a Server with "a few" mods, the last few days everything went well we used all the items we wanted. Now our Game crashes the moment we touch a Lava Bucket inside our Inventory. It just instantly closes and gives me an "Alc Cleanup"  Crash screen (Using GDLauncher). I honestly dont have a clue how to resolve this error. If anyone could help id really appreciate it, I speak German and Englisch so you can choose whatever you speak more fluently. Thanks in Advance. Plus I dont know how to link my Crash Report help for that would be nice too whoops
    • I hosted a minecraft server and I modded it, and there is always an error on the console which closes the server. If someone knows how to repair it, it would be amazing. Thank you. I paste the crash report down here: ---- Minecraft Crash Report ---- WARNING: coremods are present:   llibrary (llibrary-core-1.0.11-1.12.2.jar)   WolfArmorCore (WolfArmorAndStorage-1.12.2-3.8.0-universal-signed.jar)   AstralCore (astralsorcery-1.12.2-1.10.27.jar)   CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.8.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   midnight (themidnight-0.3.5.jar)   FutureMC (Future-MC-0.2.19.jar)   SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.5.3.jar)   Backpacked (backpacked-1.4.3-1.12.2.jar)   LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)   LoadingPlugin (Bloodmoon-MC1.12.2-1.5.3.jar) Contact their authors BEFORE contacting forge // There are four lights! Time: 3/28/24 12:17 PM Description: Exception in server tick loop net.minecraftforge.fml.common.LoaderException: java.lang.NoClassDefFoundError: net/minecraft/client/multiplayer/WorldClient     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:89)     at net.minecraftforge.fml.common.FMLModContainer.constructMod(FMLModContainer.java:612)     at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:219)     at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:197)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:498)     at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)     at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)     at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)     at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)     at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)     at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)     at com.google.common.eventbus.EventBus.post(EventBus.java:217)     at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:136)     at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:595)     at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98)     at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)     at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)     at java.lang.Thread.run(Thread.java:750) Caused by: java.lang.NoClassDefFoundError: net/minecraft/client/multiplayer/WorldClient     at java.lang.Class.getDeclaredMethods0(Native Method)     at java.lang.Class.privateGetDeclaredMethods(Class.java:2701)     at java.lang.Class.privateGetPublicMethods(Class.java:2902)     at java.lang.Class.getMethods(Class.java:1615)     at net.minecraftforge.fml.common.eventhandler.EventBus.register(EventBus.java:82)     at net.minecraftforge.fml.common.AutomaticEventSubscriber.inject(AutomaticEventSubscriber.java:82)     ... 31 more Caused by: java.lang.ClassNotFoundException: net.minecraft.client.multiplayer.WorldClient     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)     at java.lang.ClassLoader.loadClass(ClassLoader.java:418)     at java.lang.ClassLoader.loadClass(ClassLoader.java:351)     ... 37 more Caused by: net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerException: Exception in class transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer@4e558728 from coremod FMLCorePlugin     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:260)     at net.minecraft.launchwrapper.LaunchClassLoader.runTransformers(LaunchClassLoader.java:279)     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:176)     ... 39 more Caused by: java.lang.RuntimeException: Attempted to load class bsb for invalid side SERVER     at net.minecraftforge.fml.common.asm.transformers.SideTransformer.transform(SideTransformer.java:62)     at net.minecraftforge.fml.common.asm.ASMTransformerWrapper$TransformerWrapper.transform(ASMTransformerWrapper.java:256)     ... 41 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Linux (amd64) version 5.10.0-28-cloud-amd64     Java Version: 1.8.0_382, Temurin     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Temurin     Memory: 948745536 bytes (904 MB) / 1564999680 bytes (1492 MB) up to 7635730432 bytes (7282 MB)     JVM Flags: 2 total; -Xmx8192M -Xms256M     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 63 mods loaded, 63 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                 | Version                 | Source                                                | Signature                                |     |:----- |:------------------ |:----------------------- |:----------------------------------------------------- |:---------------------------------------- |     | LC    | minecraft          | 1.12.2                  | minecraft.jar                                         | None                                     |     | LC    | mcp                | 9.42                    | minecraft.jar                                         | None                                     |     | LC    | FML                | 8.0.99.99               | forge-1.12.2-14.23.5.2860.jar                         | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | forge              | 14.23.5.2860            | forge-1.12.2-14.23.5.2860.jar                         | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LC    | creativecoredummy  | 1.0.0                   | minecraft.jar                                         | None                                     |     | LC    | backpacked         | 1.4.2                   | backpacked-1.4.3-1.12.2.jar                           | None                                     |     | LC    | itemblacklist      | 1.4.3                   | ItemBlacklist-1.4.3.jar                               | None                                     |     | LC    | securitycraft      | v1.9.8                  | [1.12.2] SecurityCraft v1.9.8.jar                     | None                                     |     | LC    | aiimprovements     | 0.0.1.3                 | AIImprovements-1.12-0.0.1b3.jar                       | None                                     |     | LC    | jei                | 4.16.1.301              | jei_1.12.2-4.16.1.301.jar                             | None                                     |     | LC    | appleskin          | 1.0.14                  | AppleSkin-mc1.12-1.0.14.jar                           | None                                     |     | LC    | baubles            | 1.5.2                   | Baubles-1.12-1.5.2.jar                                | None                                     |     | LC    | astralsorcery      | 1.10.27                 | astralsorcery-1.12.2-1.10.27.jar                      | a0f0b759d895c15ceb3e3bcb5f3c2db7c582edf0 |     | LC    | attributefix       | 1.0.12                  | AttributeFix-Forge-1.12.2-1.0.12.jar                  | None                                     |     | LC    | atum               | 2.0.20                  | Atum-1.12.2-2.0.20.jar                                | None                                     |     | LC    | bloodmoon          | 1.5.3                   | Bloodmoon-MC1.12.2-1.5.3.jar                          | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LC    | forgelin           | 1.8.4                   | Forgelin-1.8.4.jar                                    | None                                     |     | LC    | bountiful          | 2.2.2                   | Bountiful-2.2.2.jar                                   | None                                     |     | LC    | camera             | 1.0.10                  | camera-1.0.10.jar                                     | None                                     |     | LC    | chisel             | MC1.12.2-1.0.2.45       | Chisel-MC1.12.2-1.0.2.45.jar                          | None                                     |     | LC    | collective         | 3.0                     | collective-1.12.2-3.0.jar                             | None                                     |     | LC    | reskillable        | 1.12.2-1.13.0           | Reskillable-1.12.2-1.13.0.jar                         | None                                     |     | LC    | compatskills       | 1.12.2-1.17.0           | CompatSkills-1.12.2-1.17.0.jar                        | None                                     |     | LC    | creativecore       | 1.10.0                  | CreativeCore_v1.10.71_mc1.12.2.jar                    | None                                     |     | LC    | customnpcs         | 1.12                    | CustomNPCs_1.12.2-(05Jul20).jar                       | None                                     |     | LC    | darknesslib        | 1.1.2                   | DarknessLib-1.12.2-1.1.2.jar                          | 220f10d3a93b3ff5fbaa7434cc629d863d6751b9 |     | LC    | dungeonsmod        | @VERSION@               | DungeonsMod-1.12.2-1.0.8.jar                          | None                                     |     | LC    | enhancedvisuals    | 1.3.0                   | EnhancedVisuals_v1.4.4_mc1.12.2.jar                   | None                                     |     | LC    | extrautils2        | 1.0                     | extrautils2-1.12-1.9.9.jar                            | None                                     |     | LC    | futuremc           | 0.2.6                   | Future-MC-0.2.19.jar                                  | None                                     |     | LC    | geckolib3          | 3.0.30                  | geckolib-forge-1.12.2-3.0.31.jar                      | None                                     |     | LC    | gottschcore        | 1.15.1                  | GottschCore-mc1.12.2-f14.23.5.2859-v1.15.1.jar        | None                                     |     | LC    | hardcorerevival    | 1.2.0                   | HardcoreRevival_1.12.2-1.2.0.jar                      | None                                     |     | LC    | waila              | 1.8.26                  | Hwyla-1.8.26-B41_1.12.2.jar                           | None                                     |     | LE    | imsm               | 1.12                    | Instant Massive Structures Mod 1.12.2.jar             | None                                     |     | L     | journeymap         | 1.12.2-5.7.1p2          | journeymap-1.12.2-5.7.1p2.jar                         | None                                     |     | L     | mobsunscreen       | @version@               | mobsunscreen-1.12.2-3.1.5.jar                         | None                                     |     | L     | morpheus           | 1.12.2-3.5.106          | Morpheus-1.12.2-3.5.106.jar                           | None                                     |     | L     | llibrary           | 1.7.20                  | llibrary-1.7.20-1.12.2.jar                            | None                                     |     | L     | mowziesmobs        | 1.5.8                   | mowziesmobs-1.5.8.jar                                 | None                                     |     | L     | nocubessrparmory   | 3.0.0                   | NoCubes_SRP_Combat_Addon_3.0.0.jar                    | None                                     |     | L     | nocubessrpnests    | 3.0.0                   | NoCubes_SRP_Nests_Addon_3.0.0.jar                     | None                                     |     | L     | nocubessrpsurvival | 3.0.0                   | NoCubes_SRP_Survival_Addon_3.0.0.jar                  | None                                     |     | L     | nocubesrptweaks    | V4.1                    | nocubesrptweaks-V4.1.jar                              | None                                     |     | L     | patchouli          | 1.0-23.6                | Patchouli-1.0-23.6.jar                                | None                                     |     | L     | artifacts          | 1.1.2                   | RLArtifacts-1.1.2.jar                                 | None                                     |     | L     | rsgauges           | 1.2.8                   | rsgauges-1.12.2-1.2.8.jar                             | None                                     |     | L     | rustic             | 1.1.7                   | rustic-1.1.7.jar                                      | None                                     |     | L     | silentlib          | 3.0.13                  | SilentLib-1.12.2-3.0.14+168.jar                       | None                                     |     | L     | scalinghealth      | 1.3.37                  | ScalingHealth-1.12.2-1.3.42+147.jar                   | None                                     |     | L     | lteleporters       | 1.12.2-3.0.2            | simpleteleporters-1.12.2-3.0.2.jar                    | None                                     |     | L     | spartanshields     | 1.5.5                   | SpartanShields-1.12.2-1.5.5.jar                       | None                                     |     | L     | spartanweaponry    | 1.5.3                   | SpartanWeaponry-1.12.2-1.5.3.jar                      | None                                     |     | L     | srparasites        | 1.9.18                  | SRParasites-1.12.2v1.9.18.jar                         | None                                     |     | L     | treasure2          | 2.2.0                   | Treasure2-mc1.12.2-f14.23.5.2859-v2.2.1.jar           | None                                     |     | L     | treeharvester      | 4.0                     | treeharvester_1.12.2-4.0.jar                          | None                                     |     | L     | twilightforest     | 3.11.1021               | twilightforest-1.12.2-3.11.1021-universal.jar         | None                                     |     | L     | variedcommodities  | 1.12.2                  | VariedCommodities_1.12.2-(31Mar23).jar                | None                                     |     | L     | voicechat          | 1.12.2-2.4.32           | voicechat-forge-1.12.2-2.4.32.jar                     | None                                     |     | L     | wolfarmor          | 3.8.0                   | WolfArmorAndStorage-1.12.2-3.8.0-universal-signed.jar | None                                     |     | L     | worldborder        | 2.3                     | worldborder_1.12.2-2.3.jar                            | None                                     |     | L     | midnight           | 0.3.5                   | themidnight-0.3.5.jar                                 | None                                     |     | L     | structurize        | 1.12.2-0.10.277-RELEASE | structurize-1.12.2-0.10.277-RELEASE.jar               | None                                     |     Loaded coremods (and transformers):  llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher WolfArmorCore (WolfArmorAndStorage-1.12.2-3.8.0-universal-signed.jar)    AstralCore (astralsorcery-1.12.2-1.10.27.jar)    CreativePatchingLoader (CreativeCore_v1.10.71_mc1.12.2.jar)    SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.8.jar)    ForgelinPlugin (Forgelin-1.8.4.jar)    midnight (themidnight-0.3.5.jar)   com.mushroom.midnight.core.transformer.MidnightClassTransformer FutureMC (Future-MC-0.2.19.jar)   thedarkcolour.futuremc.asm.CoreTransformer SpartanWeaponry-MixinLoader (SpartanWeaponry-1.12.2-1.5.3.jar)    Backpacked (backpacked-1.4.3-1.12.2.jar)   com.mrcrayfish.backpacked.asm.BackpackedTransformer LoadingPlugin (Reskillable-1.12.2-1.13.0.jar)   codersafterdark.reskillable.base.asm.ClassTransformer LoadingPlugin (Bloodmoon-MC1.12.2-1.5.3.jar)   lumien.bloodmoon.asm.ClassTransformer     Profiler Position: N/A (disabled)     Is Modded: Definitely; Server brand changed to 'fml,forge'     Type: Dedicated Server (map_server.txt)
    • When i add mods like falling leaves, visuality and kappas shaders, even if i restart Minecraft they dont show up in the mods menu and they dont work
  • Topics

×
×
  • Create New...

Important Information

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