Jump to content

Recommended Posts

Posted

I have been trying to create a backpack in my mod, but I'm having issues, if anyone could help it would be much appreciated.

 

This is the IInventory class.

package com.moreoresmod.main.inventory;

import com.moreoresmod.main.items.Backpack;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.SoundEvents;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.TextComponentTranslation;

public class InventoryBackpack implements IInventory {

public ItemStack[] inventory = new ItemStack[this.getSizeInventory()];
public ItemStack backpackItem;

public InventoryBackpack(ItemStack backpack) {
	this.backpackItem = backpack;

	if (!backpack.hasTagCompound()) {
		backpack.setTagCompound(new NBTTagCompound());
	}

	readFromNBT(backpack.getTagCompound());
}

@Override
public String getName() {
	return "container.backpack";
}

@Override
public boolean hasCustomName() {
	return false;
}

@Override
public ITextComponent getDisplayName() {
	return new TextComponentTranslation(this.getName(), new Object[0]);
}

@Override
public int getSizeInventory() {
	return 9;
}

@Override
public ItemStack getStackInSlot(int index) {
	if(index < 0 || index >= this.getSizeInventory()) return null;
	return this.inventory[index];
}

@Override
public ItemStack decrStackSize(int index, int count) {
	if(this.getStackInSlot(index) != null) {
		ItemStack stack;
		if(this.getStackInSlot(index).stackSize <= count) {
			stack = this.getStackInSlot(index);
			this.setInventorySlotContents(index, null);
			this.markDirty();
			return stack;
		}else{
			stack = this.getStackInSlot(index).splitStack(count);

			if(this.getStackInSlot(index).stackSize <= 0) {
				this.setInventorySlotContents(index, null);
			}else {
				this.setInventorySlotContents(index, this.getStackInSlot(index));
			}

			this.markDirty();
			return stack;
		}
	}else{
		return null;
	}
}

@Override
public ItemStack removeStackFromSlot(int index) {
	return null;
}

@Override
public void setInventorySlotContents(int index, ItemStack stack) {
	if(index < 0 || index >= this.getSizeInventory()) {
		return;
	}

	if(stack != null && stack.stackSize > this.getInventoryStackLimit()) {
		stack.stackSize = this.getInventoryStackLimit();
	}

	if(stack != null && stack.stackSize == 0) {
		stack = null;
	}

	this.inventory[index] = stack;
	this.markDirty();
}

@Override
public int getInventoryStackLimit() {
	return 64;
}

@Override
public boolean isUseableByPlayer(EntityPlayer player) {
	return true;
}

@Override
public void openInventory(EntityPlayer player) {}

@Override
public void closeInventory(EntityPlayer player) {}

@Override
public boolean isItemValidForSlot(int index, ItemStack stack) {
	return !(stack.getItem() instanceof Backpack);
}

@Override
public int getField(int id) {
	return 0;
}

@Override
public void setField(int id, int value) {}

@Override
public int getFieldCount() {
	return 0;
}

@Override
public void clear() {
	for(int i = 0; i < this.inventory.length; i++) {
		this.inventory[i] = null;
	}
	this.markDirty();
}

@Override
public void markDirty() {
	//super.markDirty();
	for(int i = 0; i < getSizeInventory(); i++) {
		if(getStackInSlot(i) != null && getStackInSlot(i).stackSize == 0) {
			this.inventory[i] = null;
		}
	}

	writeToNBT(this.backpackItem.getTagCompound());
}

public void readFromNBT(NBTTagCompound nbt) {
	NBTTagList list = nbt.getTagList("BackpackItems", 10);
	for(int i = 0; i < list.tagCount(); i++) {
		NBTTagCompound stackTag = list.getCompoundTagAt(i);
		int slot = stackTag.getByte("Slot") & 255;
		this.setInventorySlotContents(slot, ItemStack.loadItemStackFromNBT(stackTag));
	}
}

public void writeToNBT(NBTTagCompound nbt) {
	NBTTagList list = new NBTTagList();
	for(int i = 0; i < this.getSizeInventory(); i++) {
		NBTTagCompound stackTag = new NBTTagCompound();
		stackTag.setByte("Slot", (byte) i);
		this.getStackInSlot(i).writeToNBT(stackTag);
		list.appendTag(nbt);
	}
	nbt.setTag("BackpackItems", list);
}

}

 

This is the container class:

package com.moreoresmod.main.container;

import javax.annotation.Nullable;

import com.moreoresmod.main.container.slot.SlotBackpack;
import com.moreoresmod.main.container.slot.SlotBackpackInventory;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;

public class ContainerBackpack extends Container
{
    private final IInventory dispenserInventory;

    public ContainerBackpack(IInventory playerInventory, IInventory dispenserInventoryIn)
    {
        this.dispenserInventory = dispenserInventoryIn;

        for (int i = 0; i < 3; ++i)
        {
            for (int j = 0; j < 3; ++j)
            {
                this.addSlotToContainer(new SlotBackpack(dispenserInventoryIn, j + i * 3, 62 + j * 18, 17 + i * 18));
            }
        }

        for (int k = 0; k < 3; ++k)
        {
            for (int i1 = 0; i1 < 9; ++i1)
            {
                this.addSlotToContainer(new SlotBackpackInventory(playerInventory, i1 + k * 9 + 9, 8 + i1 * 18, 84 + k * 18));
            }
        }

        for (int l = 0; l < 9; ++l)
        {
            this.addSlotToContainer(new SlotBackpackInventory(playerInventory, l, 8 + l * 18, 142));
        }
    }

    public boolean canInteractWith(EntityPlayer playerIn)
    {
        return this.dispenserInventory.isUseableByPlayer(playerIn);
    }

    /**
     * Take a stack from the specified inventory slot.
     */
    @Nullable
    public ItemStack transferStackInSlot(EntityPlayer playerIn, int index)
    {
        ItemStack itemstack = null;
        Slot slot = (Slot)this.inventorySlots.get(index);

        if (slot != null && slot.getHasStack())
        {
            ItemStack itemstack1 = slot.getStack();
            itemstack = itemstack1.copy();

            if (index < 9)
            {
                if (!this.mergeItemStack(itemstack1, 9, 45, true))
                {
                    return null;
                }
            }
            else if (!this.mergeItemStack(itemstack1, 0, 9, false))
            {
                return null;
            }

            if (itemstack1.stackSize == 0)
            {
                slot.putStack((ItemStack)null);
            }
            else
            {
                slot.onSlotChanged();
            }

            if (itemstack1.stackSize == itemstack.stackSize)
            {
                return null;
            }

            slot.onPickupFromSlot(playerIn, itemstack1);
        }

        return itemstack;
    }
}

 

This is the GuiHandler:

package com.moreoresmod.main.handler;

import com.moreoresmod.main.container.ContainerBackpack;
import com.moreoresmod.main.container.ContainerCoalGenerator;
import com.moreoresmod.main.container.ContainerMelter;
import com.moreoresmod.main.container.ContainerParidoxemer;
import com.moreoresmod.main.gui.GuiBackpack;
import com.moreoresmod.main.gui.GuiCoalGenerator;
import com.moreoresmod.main.gui.GuiMelter;
import com.moreoresmod.main.gui.GuiParidoxemer;
import com.moreoresmod.main.inventory.InventoryBackpack;
import com.moreoresmod.main.tileentity.TileEntityCoalGenerator;
import com.moreoresmod.main.tileentity.TileEntityMelter;
import com.moreoresmod.main.tileentity.TileEntityParidoxemer;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.network.IGuiHandler;

public class GuiHandler implements IGuiHandler {

public static final int PARADOXEMER_ID = 0;
public static final int MELTER_ID = 1;
public static final int BACKPACK_ID = 2;
public static final int COALGENERATOR_ID = 3;
//public static final int DUPLICATOR_ID = 2;
//public static final int EXTRACTOR_ID = 3;
//public static final int PARADOXEMER_ID = 4;

/*

 */
@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
	if(ID == PARADOXEMER_ID){
		return new ContainerParidoxemer(player.inventory, (TileEntityParidoxemer) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == MELTER_ID){
		return new ContainerMelter(player.inventory, (TileEntityMelter) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == BACKPACK_ID) {
		return new ContainerBackpack(player.inventory, new InventoryBackpack(player.getHeldItem(player.getActiveHand()))); //player.getHeldItem(player.getActiveItemStack()
	}else if(ID == COALGENERATOR_ID){
		return new ContainerCoalGenerator(player.inventory, (TileEntityCoalGenerator) world.getTileEntity(new BlockPos(x, y, z)));
	}else{
		return null;
	}
}

/*
 if(ID == PARIDOXEMER_ID){
		return new GuiParidoxemer(player.inventory, (TileEntityParidoxemer) world.getTileEntity(new BlockPos(x, y, z)));
	}
 */

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
	if(ID == PARADOXEMER_ID){
		return new GuiParidoxemer(player.inventory, (TileEntityParidoxemer) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == MELTER_ID){ 
		return new GuiMelter(player.inventory, (TileEntityMelter) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == BACKPACK_ID) {
		return new GuiBackpack(player.inventory, new InventoryBackpack(player.getHeldItem(player.getActiveHand())));
	}else if(ID == COALGENERATOR_ID) {
		return new GuiCoalGenerator(player.inventory, (TileEntityCoalGenerator) world.getTileEntity(new BlockPos(x, y, z)));
	}else{
		return null;
	}
}
}

 

These is the slots:

SlotBackpack:

package com.moreoresmod.main.container.slot;

import com.moreoresmod.main.items.Backpack;

import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;

public class SlotBackpack extends Slot {

public SlotBackpack(IInventory inventoryIn, int index, int xPosition, int yPosition) {
	super(inventoryIn, index, xPosition, yPosition);
}

@Override
public boolean isItemValid(ItemStack stack) {
	return !(stack.getItem() instanceof Backpack);
}

}

 

SlotBackpackInventory:

package com.moreoresmod.main.container.slot;

import com.moreoresmod.main.items.Backpack;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;

public class SlotBackpackInventory extends Slot {

public SlotBackpackInventory(IInventory inventoryIn, int index, int xPosition, int yPosition) {
	super(inventoryIn, index, xPosition, yPosition);
}

@Override
public boolean canTakeStack(EntityPlayer playerIn) {
	ItemStack stack = inventory.getStackInSlot(this.getSlotIndex());
	return !(stack.getItem() instanceof Backpack);
}

}

 

This is the item class:

package com.moreoresmod.main.items;

import com.moreoresmod.main.MoreOresModMain;
import com.moreoresmod.main.handler.GuiHandler;
import com.moreoresmod.main.packet.GuiOpenPacket;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ActionResult;
import net.minecraft.util.EnumActionResult;
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;

public class Backpack extends Item {

public Backpack() {
	this.setMaxStackSize(64);
}

@Override
public int getMaxItemUseDuration(ItemStack stack) {
	return 1;
}

@Override
public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn, EnumHand hand) {
	MoreOresModMain.packetPipeline.sendToServer(new GuiOpenPacket(GuiHandler.BACKPACK_ID, new BlockPos(0, 0, 0)));
	return new ActionResult(EnumActionResult.SUCCESS, itemStackIn);
}

}

 

And this is the error its returning:

[10:17:27] [Client thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Invalid hand null
at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:26) [util.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException: Invalid hand null
at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]
at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:273) ~[NetworkRegistry.class:?]
at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:110) ~[FMLNetworkHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2723) ~[EntityPlayer.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.process(OpenGuiHandler.java:58) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.access$000(OpenGuiHandler.java:34) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler$1.run(OpenGuiHandler.java:49) ~[OpenGuiHandler$1.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:25) ~[util.class:?]
... 15 more
[10:17:27] [Client thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Invalid hand null
at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:26) [util.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException: Invalid hand null
at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]
at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:273) ~[NetworkRegistry.class:?]
at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:110) ~[FMLNetworkHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2723) ~[EntityPlayer.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.process(OpenGuiHandler.java:58) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.access$000(OpenGuiHandler.java:34) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler$1.run(OpenGuiHandler.java:49) ~[OpenGuiHandler$1.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:25) ~[util.class:?]
... 15 more
[10:17:27] [Client thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Invalid hand null
at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:26) [util.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException: Invalid hand null
at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]
at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:273) ~[NetworkRegistry.class:?]
at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:110) ~[FMLNetworkHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2723) ~[EntityPlayer.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.process(OpenGuiHandler.java:58) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.access$000(OpenGuiHandler.java:34) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler$1.run(OpenGuiHandler.java:49) ~[OpenGuiHandler$1.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:25) ~[util.class:?]
... 15 more
[10:17:27] [Client thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Invalid hand null
at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:26) [util.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException: Invalid hand null
at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]
at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:273) ~[NetworkRegistry.class:?]
at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:110) ~[FMLNetworkHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2723) ~[EntityPlayer.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.process(OpenGuiHandler.java:58) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.access$000(OpenGuiHandler.java:34) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler$1.run(OpenGuiHandler.java:49) ~[OpenGuiHandler$1.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:25) ~[util.class:?]
... 15 more
[10:17:28] [Client thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Invalid hand null
at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:26) [util.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException: Invalid hand null
at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]
at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:273) ~[NetworkRegistry.class:?]
at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:110) ~[FMLNetworkHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2723) ~[EntityPlayer.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.process(OpenGuiHandler.java:58) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.access$000(OpenGuiHandler.java:34) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler$1.run(OpenGuiHandler.java:49) ~[OpenGuiHandler$1.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:25) ~[util.class:?]
... 15 more
[10:17:28] [Client thread/FATAL]: Error executing task
java.util.concurrent.ExecutionException: java.lang.IllegalArgumentException: Invalid hand null
at java.util.concurrent.FutureTask.report(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.get(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:26) [util.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1108) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.IllegalArgumentException: Invalid hand null
at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]
at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.getLocalGuiContainer(NetworkRegistry.java:273) ~[NetworkRegistry.class:?]
at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:110) ~[FMLNetworkHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2723) ~[EntityPlayer.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.process(OpenGuiHandler.java:58) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler.access$000(OpenGuiHandler.java:34) ~[OpenGuiHandler.class:?]
at net.minecraftforge.fml.common.network.internal.OpenGuiHandler$1.run(OpenGuiHandler.java:49) ~[OpenGuiHandler$1.class:?]
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source) ~[?:1.8.0_91]
at java.util.concurrent.FutureTask.run(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.util.Util.runTask(Util.java:25) ~[util.class:?]
... 15 more
[10:17:29] [Netty Server IO #1/ERROR] [FML]: There was a critical exception handling a packet on channel MoreOresModPacket
io.netty.handler.codec.DecoderException: java.lang.NullPointerException
at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:99) ~[MessageToMessageDecoder.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageCodec.channelRead(MessageToMessageCodec.java:111) ~[MessageToMessageCodec.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) ~[AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) ~[DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.embedded.EmbeddedChannel.writeInbound(EmbeddedChannel.java:169) ~[EmbeddedChannel.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.internal.FMLProxyPacket.processPacket(FMLProxyPacket.java:109) [FMLProxyPacket.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:156) [NetworkManager.class:?]
at net.minecraft.network.NetworkManager.channelRead0(NetworkManager.java:51) [NetworkManager.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.handleServerSideCustomPacket(NetworkDispatcher.java:448) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:271) [NetworkDispatcher.class:?]
at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.channelRead0(NetworkDispatcher.java:72) [NetworkDispatcher.class:?]
at io.netty.channel.SimpleChannelInboundHandler.channelRead(SimpleChannelInboundHandler.java:105) [simpleChannelInboundHandler.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:333) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:319) [AbstractChannelHandlerContext.class:4.0.23.Final]
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:787) [DefaultChannelPipeline.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.finishPeerRead(LocalChannel.java:326) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel.access$400(LocalChannel.java:45) [LocalChannel.class:4.0.23.Final]
at io.netty.channel.local.LocalChannel$5.run(LocalChannel.java:312) [LocalChannel$5.class:4.0.23.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:380) [singleThreadEventExecutor.class:4.0.23.Final]
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:357) [NioEventLoop.class:4.0.23.Final]
at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:116) [singleThreadEventExecutor$2.class:4.0.23.Final]
at java.lang.Thread.run(Unknown Source) [?:1.8.0_91]
Caused by: java.lang.NullPointerException
at com.moreoresmod.main.inventory.InventoryBackpack.<init>(InventoryBackpack.java:22) ~[inventoryBackpack.class:?]
at com.moreoresmod.main.handler.GuiHandler.getServerGuiElement(GuiHandler.java:41) ~[GuiHandler.class:?]
at net.minecraftforge.fml.common.network.NetworkRegistry.getRemoteGuiContainer(NetworkRegistry.java:251) ~[NetworkRegistry.class:?]
at net.minecraftforge.fml.common.network.internal.FMLNetworkHandler.openGui(FMLNetworkHandler.java:87) ~[FMLNetworkHandler.class:?]
at net.minecraft.entity.player.EntityPlayer.openGui(EntityPlayer.java:2723) ~[EntityPlayer.class:?]
at com.moreoresmod.main.packet.GuiOpenPacket.handleServer(GuiOpenPacket.java:44) ~[GuiOpenPacket.class:?]
at com.moreoresmod.main.packet.PacketPipeline.decode(PacketPipeline.java:76) ~[PacketPipeline.class:?]
at com.moreoresmod.main.packet.PacketPipeline.decode(PacketPipeline.java:1) ~[PacketPipeline.class:?]
at io.netty.handler.codec.MessageToMessageCodec$2.decode(MessageToMessageCodec.java:81) ~[MessageToMessageCodec$2.class:4.0.23.Final]
at io.netty.handler.codec.MessageToMessageDecoder.channelRead(MessageToMessageDecoder.java:89) ~[MessageToMessageDecoder.class:4.0.23.Final]
... 25 more

  • Like 1
Posted

Caused by: java.lang.IllegalArgumentException: Invalid hand null
at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]
at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]

Issue seems to happen here:

return new GuiBackpack(player.inventory, new InventoryBackpack(player.getHeldItem(player.getActiveHand())));

Check the hand and make sure it is not null before returning.

Also previously known as eAndPi.

"Pi, is there a station coming up where we can board your train of thought?" -Kronnn

Published Mods: Underworld

Handy links: Vic_'s Forge events Own WIP Tutorials.

Posted
Caused by: java.lang.IllegalArgumentException: Invalid hand null

at net.minecraft.entity.EntityLivingBase.getHeldItem(EntityLivingBase.java:1654) ~[EntityLivingBase.class:?]

at com.moreoresmod.main.handler.GuiHandler.getClientGuiElement(GuiHandler.java:62) ~[GuiHandler.class:?]

 

player.getHeldItem(player.getActiveHand()) is returning null.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted

EntityLivingBase#getActiveHand

only tells you which hand the entity is continuously using an item like a bow or shield from. It returns

null

if the entity isn't using an item.

 

Item#onItemRightClick

gives you the

EnumHand

containing the item as an argument, use this.

 

I would also suggest switching your inventory to the

IItemHandler

capability. This will prevent having to read the contents from and write them to NBT every time you interact with the inventory.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Posted

I got the GUI to show up however I get a crash if I try to put an item into the backpack it crashes the game.

 

[12:13:06] [Client thread/FATAL]: Reported exception thrown!
net.minecraft.util.ReportedException: Updating screen events
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1810) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1118) ~[Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:406) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_91]
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_91]
at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_91]
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
at GradleStart.main(GradleStart.java:26) [start/:?]
Caused by: java.lang.NullPointerException
at com.moreoresmod.main.inventory.InventoryBackpack.writeToNBT(InventoryBackpack.java:172) ~[inventoryBackpack.class:?]
at com.moreoresmod.main.inventory.InventoryBackpack.markDirty(InventoryBackpack.java:155) ~[inventoryBackpack.class:?]
at net.minecraft.inventory.Slot.onSlotChanged(Slot.java:108) ~[slot.class:?]
at net.minecraft.inventory.Container.slotClick(Container.java:399) ~[Container.class:?]
at net.minecraft.client.multiplayer.PlayerControllerMP.windowClick(PlayerControllerMP.java:594) ~[PlayerControllerMP.class:?]
at net.minecraft.client.gui.inventory.GuiContainer.handleMouseClick(GuiContainer.java:685) ~[GuiContainer.class:?]
at net.minecraft.client.gui.inventory.GuiContainer.mouseClicked(GuiContainer.java:427) ~[GuiContainer.class:?]
at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:615) ~[GuiScreen.class:?]
at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:581) ~[GuiScreen.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1797) ~[Minecraft.class:?]
... 15 more
[12:13:06] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:649]: ---- Minecraft Crash Report ----
// But it works on my machine.

Time: 10/23/16 12:13 PM
Description: Updating screen events

java.lang.NullPointerException: Updating screen events
at com.moreoresmod.main.inventory.InventoryBackpack.writeToNBT(InventoryBackpack.java:172)
at com.moreoresmod.main.inventory.InventoryBackpack.markDirty(InventoryBackpack.java:155)
at net.minecraft.inventory.Slot.onSlotChanged(Slot.java:108)
at net.minecraft.inventory.Container.slotClick(Container.java:399)
at net.minecraft.client.multiplayer.PlayerControllerMP.windowClick(PlayerControllerMP.java:594)
at net.minecraft.client.gui.inventory.GuiContainer.handleMouseClick(GuiContainer.java:685)
at net.minecraft.client.gui.inventory.GuiContainer.mouseClicked(GuiContainer.java:427)
at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:615)
at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:581)
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1797)
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1118)
at net.minecraft.client.Minecraft.run(Minecraft.java:406)
at net.minecraft.client.main.Main.main(Main.java:118)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
at GradleStart.main(GradleStart.java:26)


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

-- Head --
Thread: Client thread
Stacktrace:
at com.moreoresmod.main.inventory.InventoryBackpack.writeToNBT(InventoryBackpack.java:172)
at com.moreoresmod.main.inventory.InventoryBackpack.markDirty(InventoryBackpack.java:155)
at net.minecraft.inventory.Slot.onSlotChanged(Slot.java:108)
at net.minecraft.inventory.Container.slotClick(Container.java:399)
at net.minecraft.client.multiplayer.PlayerControllerMP.windowClick(PlayerControllerMP.java:594)
at net.minecraft.client.gui.inventory.GuiContainer.handleMouseClick(GuiContainer.java:685)
at net.minecraft.client.gui.inventory.GuiContainer.mouseClicked(GuiContainer.java:427)
at net.minecraft.client.gui.GuiScreen.handleMouseInput(GuiScreen.java:615)
at net.minecraft.client.gui.GuiScreen.handleInput(GuiScreen.java:581)

-- Affected screen --
Details:
Screen name: com.moreoresmod.main.gui.GuiBackpack

-- Affected level --
Details:
Level name: MpServer
All players: 1 total; [EntityPlayerSP['KingOfMiners'/111, l='MpServer', x=240.01, y=91.00, z=-128.94]]
Chunk stats: MultiplayerChunkCache: 625, 625
Level seed: 0
Level generator: ID 00 - default, ver 1. Features enabled: false
Level generator options: 
Level spawn location: World: (218,64,-135), Chunk: (at 10,4,9 in 13,-9; contains blocks 208,0,-144 to 223,255,-129), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
Level time: 2301652 game time, 1645329 day time
Level dimension: 0
Level storage version: 0x00000 - Unknown?
Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false
Forced entities: 78 total; [EntityBat['Bat'/2, l='MpServer', x=165.61, y=19.13, z=-123.91], EntitySkeleton['Skeleton'/3, l='MpServer', x=189.50, y=39.00, z=-131.50], EntityBat['Bat'/4, l='MpServer', x=184.75, y=56.10, z=-126.69], EntitySkeleton['Skeleton'/5, l='MpServer', x=177.30, y=22.00, z=-120.49], EntitySkeleton['Skeleton'/6, l='MpServer', x=187.50, y=55.00, z=-122.50], EntityBat['Bat'/7, l='MpServer', x=184.28, y=55.67, z=-126.61], EntityBat['Bat'/8, l='MpServer', x=185.40, y=55.05, z=-123.35], EntityBat['Bat'/9, l='MpServer', x=184.49, y=54.03, z=-123.49], EntityZombie['Zombie'/10, l='MpServer', x=190.50, y=15.00, z=-101.50], EntityBat['Bat'/11, l='MpServer', x=181.59, y=37.10, z=-82.39], EntityCreeper['Creeper'/13, l='MpServer', x=195.79, y=31.00, z=-128.53], EntityCreeper['Creeper'/14, l='MpServer', x=196.05, y=37.00, z=-113.67], EntitySkeleton['Skeleton'/15, l='MpServer', x=196.45, y=39.00, z=-119.25], EntitySkeleton['Skeleton'/16, l='MpServer', x=200.50, y=11.00, z=-109.50], EntitySkeleton['Skeleton'/17, l='MpServer', x=195.50, y=37.00, z=-108.50], EntityCreeper['Creeper'/18, l='MpServer', x=199.17, y=39.00, z=-109.54], EntityCreeper['Creeper'/19, l='MpServer', x=192.80, y=37.00, z=-110.84], EntityItem['item.item.slimeball'/20, l='MpServer', x=194.88, y=15.00, z=-74.93], EntityCreeper['Creeper'/21, l='MpServer', x=205.50, y=20.00, z=-51.08], EntityZombie['Zombie'/22, l='MpServer', x=203.50, y=21.00, z=-52.73], EntitySlime['Slime'/23, l='MpServer', x=204.35, y=22.00, z=-61.81], EntityZombie['Zombie'/24, l='MpServer', x=209.26, y=40.00, z=-108.48], EntityZombie['Zombie'/25, l='MpServer', x=209.72, y=23.00, z=-71.51], EntityZombie['Zombie'/26, l='MpServer', x=223.26, y=22.00, z=-68.56], EntitySkeleton['Skeleton'/27, l='MpServer', x=211.50, y=36.00, z=-69.50], EntitySkeleton['Skeleton'/28, l='MpServer', x=210.50, y=36.00, z=-69.50], EntitySkeleton['Skeleton'/29, l='MpServer', x=210.50, y=36.00, z=-73.50], EntitySkeleton['Skeleton'/39, l='MpServer', x=229.50, y=33.00, z=-132.50], EntityOcelot['Cat'/40, l='MpServer', x=238.69, y=91.00, z=-137.28], EntityOcelot['Cat'/41, l='MpServer', x=232.90, y=91.00, z=-134.28], EntityOcelot['Cat'/42, l='MpServer', x=239.76, y=91.00, z=-140.14], EntitySkeleton['Skeleton'/49, l='MpServer', x=253.50, y=22.00, z=-131.50], EntitySkeleton['Skeleton'/50, l='MpServer', x=243.72, y=65.00, z=-133.88], EntityCreeper['Creeper'/51, l='MpServer', x=246.56, y=65.33, z=-137.55], EntitySkeleton['Skeleton'/52, l='MpServer', x=242.51, y=66.00, z=-129.79], EntitySkeleton['Skeleton'/53, l='MpServer', x=249.70, y=64.90, z=-129.70], EntityOcelot['Cat'/54, l='MpServer', x=248.98, y=91.00, z=-141.86], EntityOcelot['Cat'/55, l='MpServer', x=254.33, y=88.00, z=-112.64], EntityOcelot['Cat'/56, l='MpServer', x=251.89, y=88.00, z=-114.70], EntitySkeleton['Skeleton'/57, l='MpServer', x=253.39, y=46.00, z=-89.70], EntityCreeper['Creeper'/58, l='MpServer', x=251.78, y=47.00, z=-91.60], EntityBat['Bat'/59, l='MpServer', x=251.53, y=47.39, z=-57.97], EntityBat['Bat'/60, l='MpServer', x=250.74, y=47.03, z=-55.61], EntityBat['Bat'/61, l='MpServer', x=252.60, y=48.97, z=-67.69], EntityOcelot['Cat'/63, l='MpServer', x=256.68, y=91.00, z=-146.97], EntityBat['Bat'/64, l='MpServer', x=271.41, y=14.90, z=-112.32], EntityOcelot['Cat'/65, l='MpServer', x=261.43, y=88.00, z=-118.99], EntityOcelot['Cat'/66, l='MpServer', x=258.56, y=88.00, z=-115.20], EntityZombie['Zombie'/67, l='MpServer', x=269.29, y=46.00, z=-89.49], EntityCreeper['Creeper'/68, l='MpServer', x=273.37, y=45.00, z=-89.45], EntityZombie['Zombie'/69, l='MpServer', x=265.30, y=46.00, z=-88.50], EntityZombie['Zombie'/70, l='MpServer', x=261.70, y=46.12, z=-82.70], EntityZombie['Zombie'/71, l='MpServer', x=269.22, y=47.00, z=-79.51], EntitySkeleton['Skeleton'/72, l='MpServer', x=258.50, y=51.00, z=-70.71], EntitySkeleton['Skeleton'/73, l='MpServer', x=258.50, y=51.00, z=-74.50], EntityCreeper['Creeper'/76, l='MpServer', x=287.23, y=23.00, z=-128.17], EntityBat['Bat'/77, l='MpServer', x=273.75, y=15.10, z=-113.87], EntitySkeleton['Skeleton'/78, l='MpServer', x=278.09, y=23.00, z=-124.15], EntityCreeper['Creeper'/79, l='MpServer', x=282.50, y=23.00, z=-124.50], EntityZombie['Zombie'/80, l='MpServer', x=285.21, y=23.00, z=-123.50], EntityCreeper['Creeper'/81, l='MpServer', x=277.37, y=23.00, z=-124.19], EntityZombie['Zombie'/82, l='MpServer', x=282.17, y=21.00, z=-98.68], EntityBat['Bat'/83, l='MpServer', x=283.48, y=21.75, z=-89.04], EntitySkeleton['Skeleton'/84, l='MpServer', x=272.91, y=45.00, z=-88.41], EntityCreeper['Creeper'/85, l='MpServer', x=276.50, y=15.00, z=-49.50], EntityZombie['Zombie'/86, l='MpServer', x=281.57, y=18.00, z=-50.74], EntitySkeleton['Skeleton'/87, l='MpServer', x=299.50, y=23.00, z=-135.50], EntitySkeleton['Skeleton'/88, l='MpServer', x=308.29, y=19.00, z=-128.55], EntityBat['Bat'/89, l='MpServer', x=306.75, y=15.10, z=-118.25], EntityBat['Bat'/90, l='MpServer', x=307.12, y=16.10, z=-111.60], EntityBat['Bat'/91, l='MpServer', x=305.65, y=15.52, z=-112.67], EntitySpider['Spider'/92, l='MpServer', x=304.18, y=23.00, z=-84.52], EntitySkeleton['Skeleton'/93, l='MpServer', x=310.30, y=24.00, z=-83.51], EntityZombie['Zombie'/94, l='MpServer', x=312.58, y=14.00, z=-79.50], EntityZombie['Zombie'/95, l='MpServer', x=308.68, y=24.00, z=-81.70], EntitySkeleton['Skeleton'/96, l='MpServer', x=315.23, y=25.00, z=-74.53], EntityCreeper['Creeper'/97, l='MpServer', x=313.51, y=24.00, z=-75.30], EntityPlayerSP['KingOfMiners'/111, l='MpServer', x=240.01, y=91.00, z=-128.94]]
Retry entities: 0 total; []
Server brand: fml,forge
Server type: Integrated singleplayer server
Stacktrace:
at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:450)
at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2779)
at net.minecraft.client.Minecraft.run(Minecraft.java:427)
at net.minecraft.client.main.Main.main(Main.java:118)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
at GradleStart.main(GradleStart.java:26)

  • Like 1
Posted
java.lang.NullPointerException: Updating screen events
at com.moreoresmod.main.inventory.InventoryBackpack.writeToNBT(InventoryBackpack.java:172)

Should say enough.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Posted

I fixed that but now I'm getting another error.

 

---- Minecraft Crash Report ----
// This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~]

Time: 10/23/16 1:13 PM
Description: Ticking player

java.lang.StackOverflowError: Ticking player
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:287)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)


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

-- Head --
Thread: Server thread
Stacktrace:
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:287)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:289)
at net.minecraft.nbt.NBTTagList.copy(NBTTagList.java:11)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:525)
at net.minecraft.nbt.NBTTagCompound.copy(NBTTagCompound.java:17)

-- Player being ticked --
Details:
Entity Type: null (net.minecraft.entity.player.EntityPlayerMP)
Entity ID: 110
Entity Name: KingOfMiners
Entity's Exact location: 240.01, 91.00, -128.94
Entity's Block location: World: (240,91,-129), Chunk: (at 0,5,15 in 15,-9; contains blocks 240,0,-144 to 255,255,-129), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
Entity's Momentum: 0.00, -0.08, 0.00
Entity's Passengers: []
Entity's Vehicle: ~~ERROR~~ NullPointerException: null
Stacktrace:
at net.minecraft.world.WorldServer.tickPlayers(WorldServer.java:678)
at net.minecraft.world.World.updateEntities(World.java:1862)
at net.minecraft.world.WorldServer.updateEntities(WorldServer.java:644)
at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:783)
at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:687)
at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:156)
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:536)
at java.lang.Thread.run(Unknown Source)

-- Affected level --
Details:
Level name: New World
All players: 1 total; [EntityPlayerMP['KingOfMiners'/110, l='New World', x=240.01, y=91.00, z=-128.94]]
Chunk stats: ServerChunkCache: 625 Drop: 0
Level seed: 6120319117022592938
Level generator: ID 00 - default, ver 1. Features enabled: true
Level generator options: 
Level spawn location: World: (218,64,-135), Chunk: (at 10,4,9 in 13,-9; contains blocks 208,0,-144 to 223,255,-129), Region: (0,-1; contains chunks 0,-32 to 31,-1, blocks 0,0,-512 to 511,255,-1)
Level time: 2302066 game time, 1645743 day time
Level dimension: 0
Level storage version: 0x04ABD - Anvil
Level weather: Rain time: 26600 (now: false), thunder time: 161956 (now: false)
Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true

-- System Details --
Details:
Minecraft Version: 1.10.2
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_91, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 515083864 bytes (491 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)
JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M
IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95
FML: MCP 9.32 Powered by Forge 12.18.0.2006 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJAAAA	mcp{9.19} [Minecraft Coder Pack] (minecraft.jar) 
UCHIJAAAA	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.10.2-12.18.0.2006-1.10.0.jar) 
UCHIJAAAA	Forge{12.18.0.2006} [Minecraft Forge] (forgeSrc-1.10.2-12.18.0.2006-1.10.0.jar) 
UCHIJAAAA	MoreOresMod{1.4 beta} [MoreOresMod] (bin) 
Loaded coremods (and transformers): 
GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.
Profiler Position: N/A (disabled)
Player Count: 1 / 8; [EntityPlayerMP['KingOfMiners'/110, l='New World', x=240.01, y=91.00, z=-128.94]]
Type: Integrated Server (map_client.txt)
Is Modded: Definitely; Client brand changed to 'fml,forge'

  • Like 1
Posted

Inventory:

package com.moreoresmod.main.inventory;

import com.moreoresmod.main.items.Backpack;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.init.SoundEvents;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.nbt.NBTTagList;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.TextComponentTranslation;

public class InventoryBackpack implements IInventory {

public ItemStack[] inventory = new ItemStack[this.getSizeInventory()];
public ItemStack backpackItem;

public InventoryBackpack(ItemStack backpack) {
	this.backpackItem = backpack;

	if (!backpack.hasTagCompound()) {
		backpack.setTagCompound(new NBTTagCompound());
	}

	readFromNBT(backpack.getTagCompound());
}

@Override
public String getName() {
	return "container.backpack";
}

@Override
public boolean hasCustomName() {
	return false;
}

@Override
public ITextComponent getDisplayName() {
	return new TextComponentTranslation(this.getName(), new Object[0]);
}

@Override
public int getSizeInventory() {
	return 9;
}

@Override
public ItemStack getStackInSlot(int index) {
	if(index < 0 || index >= this.getSizeInventory()) return null;
	return this.inventory[index];
}

@Override
public ItemStack decrStackSize(int index, int count) {
	if(this.getStackInSlot(index) != null) {
		ItemStack stack;
		if(this.getStackInSlot(index).stackSize <= count) {
			stack = this.getStackInSlot(index);
			this.setInventorySlotContents(index, null);
			this.markDirty();
			return stack;
		}else{
			stack = this.getStackInSlot(index).splitStack(count);

			if(this.getStackInSlot(index).stackSize <= 0) {
				this.setInventorySlotContents(index, null);
			}else {
				this.setInventorySlotContents(index, this.getStackInSlot(index));
			}

			this.markDirty();
			return stack;
		}
	}else{
		return null;
	}
}

@Override
public ItemStack removeStackFromSlot(int index) {
	return null;
}

@Override
public void setInventorySlotContents(int index, ItemStack stack) {
	if(index < 0 || index >= this.getSizeInventory()) {
		return;
	}

	if(stack != null && stack.stackSize > this.getInventoryStackLimit()) {
		stack.stackSize = this.getInventoryStackLimit();
	}

	if(stack != null && stack.stackSize == 0) {
		stack = null;
	}

	this.inventory[index] = stack;
	this.markDirty();
}

@Override
public int getInventoryStackLimit() {
	return 64;
}

@Override
public boolean isUseableByPlayer(EntityPlayer player) {
	return true;
}

@Override
public void openInventory(EntityPlayer player) {}

@Override
public void closeInventory(EntityPlayer player) {}

@Override
public boolean isItemValidForSlot(int index, ItemStack stack) {
	return !(stack.getItem() instanceof Backpack);
}

@Override
public int getField(int id) {
	return 0;
}

@Override
public void setField(int id, int value) {}

@Override
public int getFieldCount() {
	return 0;
}

@Override
public void clear() {
	for(int i = 0; i < this.inventory.length; i++) {
		this.inventory[i] = null;
	}
	this.markDirty();
}

@Override
public void markDirty() {
	//super.markDirty();
	for(int i = 0; i < getSizeInventory(); i++) {
		if(getStackInSlot(i) != null && getStackInSlot(i).stackSize == 0) {
			this.inventory[i] = null;
		}
	}

	writeToNBT(this.backpackItem.getTagCompound());
}

public void readFromNBT(NBTTagCompound nbt) {
	NBTTagList list = nbt.getTagList("BackpackItems", 10);
	for(int i = 0; i < list.tagCount(); i++) {
		NBTTagCompound stackTag = list.getCompoundTagAt(i);
		int slot = stackTag.getByte("Slot") & 255;
		this.setInventorySlotContents(slot, ItemStack.loadItemStackFromNBT(stackTag));
	}
}

public void writeToNBT(NBTTagCompound nbt) {
	NBTTagList list = new NBTTagList();
	for(int i = 0; i < this.getSizeInventory(); i++) {
		if(this.getStackInSlot(i) != null) {
			NBTTagCompound stackTag = new NBTTagCompound();
			stackTag.setByte("Slot", (byte) i);
			this.getStackInSlot(i).writeToNBT(stackTag);
			list.appendTag(nbt);
		}
	}
	nbt.setTag("BackpackItems", list);
}

}

 

Container:

package com.moreoresmod.main.container;

import javax.annotation.Nullable;

import com.moreoresmod.main.container.slot.SlotBackpack;
import com.moreoresmod.main.container.slot.SlotBackpackInventory;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;

public class ContainerBackpack extends Container
{
    private final IInventory dispenserInventory;

    public ContainerBackpack(IInventory playerInventory, IInventory dispenserInventoryIn)
    {
        this.dispenserInventory = dispenserInventoryIn;

        for (int i = 0; i < 3; ++i)
        {
            for (int j = 0; j < 3; ++j)
            {
                this.addSlotToContainer(new SlotBackpack(dispenserInventoryIn, j + i * 3, 62 + j * 18, 17 + i * 18));
            }
        }

        for (int k = 0; k < 3; ++k)
        {
            for (int i1 = 0; i1 < 9; ++i1)
            {
                this.addSlotToContainer(new SlotBackpackInventory(playerInventory, i1 + k * 9 + 9, 8 + i1 * 18, 84 + k * 18));
            }
        }

        for (int l = 0; l < 9; ++l)
        {
            this.addSlotToContainer(new SlotBackpackInventory(playerInventory, l, 8 + l * 18, 142));
        }
    }

    public boolean canInteractWith(EntityPlayer playerIn)
    {
        return this.dispenserInventory.isUseableByPlayer(playerIn);
    }

    /**
     * Take a stack from the specified inventory slot.
     */
    @Nullable
    public ItemStack transferStackInSlot(EntityPlayer playerIn, int index)
    {
        ItemStack itemstack = null;
        Slot slot = (Slot)this.inventorySlots.get(index);

        if (slot != null && slot.getHasStack())
        {
            ItemStack itemstack1 = slot.getStack();
            itemstack = itemstack1.copy();

            if (index < 9)
            {
                if (!this.mergeItemStack(itemstack1, 9, 45, true))
                {
                    return null;
                }
            }
            else if (!this.mergeItemStack(itemstack1, 0, 9, false))
            {
                return null;
            }

            if (itemstack1.stackSize == 0)
            {
                slot.putStack((ItemStack)null);
            }
            else
            {
                slot.onSlotChanged();
            }

            if (itemstack1.stackSize == itemstack.stackSize)
            {
                return null;
            }

            slot.onPickupFromSlot(playerIn, itemstack1);
        }

        return itemstack;
    }
}

 

GuiHandler:

package com.moreoresmod.main.handler;

import com.moreoresmod.main.container.ContainerBackpack;
import com.moreoresmod.main.container.ContainerCoalGenerator;
import com.moreoresmod.main.container.ContainerMelter;
import com.moreoresmod.main.container.ContainerParidoxemer;
import com.moreoresmod.main.gui.GuiBackpack;
import com.moreoresmod.main.gui.GuiCoalGenerator;
import com.moreoresmod.main.gui.GuiMelter;
import com.moreoresmod.main.gui.GuiParidoxemer;
import com.moreoresmod.main.inventory.InventoryBackpack;
import com.moreoresmod.main.tileentity.TileEntityCoalGenerator;
import com.moreoresmod.main.tileentity.TileEntityMelter;
import com.moreoresmod.main.tileentity.TileEntityParidoxemer;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.network.IGuiHandler;

public class GuiHandler implements IGuiHandler {

public static final int PARADOXEMER_ID = 0;
public static final int MELTER_ID = 1;
public static final int BACKPACK_ID = 2;
public static final int COALGENERATOR_ID = 3;
//public static final int DUPLICATOR_ID = 2;
//public static final int EXTRACTOR_ID = 3;
//public static final int PARADOXEMER_ID = 4;

private static EnumHand hand;

public static void setEnumHand(EnumHand handIn) {
	hand = handIn;
}
/*

 */
@Override
public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
	if(ID == PARADOXEMER_ID){
		return new ContainerParidoxemer(player.inventory, (TileEntityParidoxemer) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == MELTER_ID){
		return new ContainerMelter(player.inventory, (TileEntityMelter) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == BACKPACK_ID) {
		return new ContainerBackpack(player.inventory, new InventoryBackpack(player.getHeldItem(hand))); //player.getHeldItem(player.getActiveItemStack()
	}else if(ID == COALGENERATOR_ID){
		return new ContainerCoalGenerator(player.inventory, (TileEntityCoalGenerator) world.getTileEntity(new BlockPos(x, y, z)));
	}else{
		return null;
	}
}

/*
 if(ID == PARIDOXEMER_ID){
		return new GuiParidoxemer(player.inventory, (TileEntityParidoxemer) world.getTileEntity(new BlockPos(x, y, z)));
	}
 */

@Override
public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
	if(ID == PARADOXEMER_ID){
		return new GuiParidoxemer(player.inventory, (TileEntityParidoxemer) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == MELTER_ID){ 
		return new GuiMelter(player.inventory, (TileEntityMelter) world.getTileEntity(new BlockPos(x, y, z)));
	}else if(ID == BACKPACK_ID) {
		return new GuiBackpack(player.inventory, new InventoryBackpack(player.getHeldItem(hand)));
	}else if(ID == COALGENERATOR_ID) {
		return new GuiCoalGenerator(player.inventory, (TileEntityCoalGenerator) world.getTileEntity(new BlockPos(x, y, z)));
	}else{
		return null;
	}
}
}

 

Slots:

package com.moreoresmod.main.container.slot;

import com.moreoresmod.main.items.Backpack;

import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;

public class SlotBackpack extends Slot {

public SlotBackpack(IInventory inventoryIn, int index, int xPosition, int yPosition) {
	super(inventoryIn, index, xPosition, yPosition);
}

@Override
public boolean isItemValid(ItemStack stack) {
	return !(stack.getItem() instanceof Backpack);
}

}

 

package com.moreoresmod.main.container.slot;

import com.moreoresmod.main.items.Backpack;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;

public class SlotBackpackInventory extends Slot {

public SlotBackpackInventory(IInventory inventoryIn, int index, int xPosition, int yPosition) {
	super(inventoryIn, index, xPosition, yPosition);
}

@Override
public boolean canTakeStack(EntityPlayer playerIn) {
	ItemStack stack = inventory.getStackInSlot(this.getSlotIndex());
	return !(stack.getItem() instanceof Backpack);
}

}

 

Gui:

package com.moreoresmod.main.gui;

import com.moreoresmod.main.container.ContainerBackpack;
import com.moreoresmod.main.container.ContainerParidoxemer;
import com.moreoresmod.main.tileentity.TileEntityParidoxemer;

import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.renderer.GlStateManager;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ResourceLocation;

public class GuiBackpack extends GuiContainer {

private static final ResourceLocation GuiTextures = new ResourceLocation("moreoresmod:" + "textures/gui/container/paridoxemer.png");
private final InventoryPlayer playerInventory;
    private IInventory backpack;
    
public GuiBackpack(InventoryPlayer inventory, IInventory tileentity) {
	super(new ContainerBackpack(inventory, tileentity));

	playerInventory = inventory;
	backpack = tileentity;

	this.xSize = 176;
	this.ySize = 166;

}

@Override
protected void drawGuiContainerForegroundLayer(int mouseX, int mouseY)
    {
        String s = this.backpack.getDisplayName().getUnformattedText();
        this.fontRendererObj.drawString(s, this.xSize / 2 - this.fontRendererObj.getStringWidth(s) / 2, 6, 4210752);
        this.fontRendererObj.drawString(this.playerInventory.getDisplayName().getUnformattedText(), 8, this.ySize - 96 + 2, 4210752);
    }

@Override
protected void drawGuiContainerBackgroundLayer(float partialTicks, int mouseX, int mouseY) {
	GlStateManager.color(1.0F, 1.0F, 1.0F, 1.0F);
        this.mc.getTextureManager().bindTexture(GuiTextures);
        int k = (this.width - this.xSize) / 2;
        int l = (this.height - this.ySize) / 2;
        this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
}

}

 

Item:

package com.moreoresmod.main.items;

import com.moreoresmod.main.MoreOresModMain;
import com.moreoresmod.main.handler.GuiHandler;
import com.moreoresmod.main.packet.GuiOpenPacket;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ActionResult;
import net.minecraft.util.EnumActionResult;
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;

public class Backpack extends Item {

public Backpack() {
	this.setMaxStackSize(64);
}

@Override
public int getMaxItemUseDuration(ItemStack stack) {
	return 1;
}

@Override
public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn, EnumHand hand) {
	GuiHandler.setEnumHand(hand);
	MoreOresModMain.packetPipeline.sendToServer(new GuiOpenPacket(GuiHandler.BACKPACK_ID, new BlockPos(0, 0, 0)));
	return new ActionResult(EnumActionResult.SUCCESS, itemStackIn);
}

}

  • Like 1
Posted

Don't use IInventory, use Capabilities. See http://mcforge.readthedocs.io/en/latest/datastorage/capabilities/ for more info.

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

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



×
×
  • Create New...

Important Information

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