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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

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

×
×
  • Create New...

Important Information

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