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

    • My Cobblemon Star Academy world keeps crashing before I load in ---- Minecraft Crash Report ---- // Uh... Did I do that? Time: 2025-07-09 20:41:46 Description: Ticking memory connection java.lang.NullPointerException: Cannot invoke "Object.getClass()" because "it" is null     at knot//com.cobblemon.mod.common.api.storage.player.adapter.JsonPlayerData.load(JsonPlayerData.java:60)     at knot//com.cobblemon.mod.common.api.storage.player.factory.JsonPlayerDataStoreFactory.load(JsonPlayerDataStoreFactory.java:32)     at knot//com.cobblemon.mod.common.api.storage.player.PlayerDataStoreManager.get(PlayerDataStoreManager.java:40)     at knot//com.metacontent.yetanotherchancebooster.store.PlayerDataUtil.save(PlayerDataUtil.java:10)     at knot//com.metacontent.yetanotherchancebooster.store.PlayerDataUtil.onDisconnect(PlayerDataUtil.java:16)     at knot//net.minecraft.class_3222.handler$gdg000$yetanotherchancebooster$injectOnDisconnect(class_3222.java:13869)     at knot//net.minecraft.class_3222.method_14231(class_3222.java:1157)     at knot//net.minecraft.class_3244.method_10839(class_3244.java:1227)     at knot//net.minecraft.class_2535.method_10768(class_2535.java:450)     at knot//net.minecraft.class_2535.method_10754(class_2535.java:263)     at knot//net.minecraft.class_3242.method_14357(class_3242.java:172)     at knot//net.minecraft.server.MinecraftServer.method_3813(MinecraftServer.java:908)     at knot//net.minecraft.server.MinecraftServer.method_3748(MinecraftServer.java:824)     at knot//net.minecraft.class_1132.method_3748(class_1132.java:105)     at knot//net.minecraft.server.MinecraftServer.method_29741(MinecraftServer.java:671)     at knot//net.minecraft.server.MinecraftServer.method_29739(MinecraftServer.java:265)     at java.base/java.lang.Thread.run(Thread.java:840) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Cobblemon -- Details:     Version: 1.5.2     Is Snapshot: false     Git Commit: df8f078 (https://gitlab.com/cable-mc/cobblemon/-/commit/df8f078d13702ab9a000438910b822ceffbb2248)     Branch: HEAD -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 10 (amd64) version 10.0     Java Version: 17.0.15, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 809490120 bytes (771 MiB) / 4269801472 bytes (4072 MiB) up to 9462349824 bytes (9024 MiB)     CPUs: 12     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 5 1600 Six-Core Processor                 Identifier: AuthenticAMD Family 23 Model 8 Stepping 2     Microarchitecture: Zen+     Frequency (GHz): 3.19     Number of physical packages: 1     Number of physical CPUs: 6     Number of logical CPUs: 12     Graphics card #0 name: NVIDIA GeForce GT 1030     Graphics card #0 vendor: NVIDIA (0x10de)     Graphics card #0 VRAM (MB): 2048.00     Graphics card #0 deviceId: 0x1d01     Graphics card #0 versionInfo: DriverVersion=32.0.15.6094     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 2.40     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 2.40     Memory slot #1 type: DDR4     Virtual memory max (MB): 25548.66     Virtual memory used (MB): 20187.01     Swap memory total (MB): 9216.00     Swap memory used (MB): 754.71     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx9024m -Xms256m     Fabric Mods:          academy: Star Academy 1.0.1             mixinsquared: MixinSquared 0.2.0         accessible-step: Accessible Step 2.0.1+1.20             blue_endless_jankson: jankson 1.2.3         advancementplaques: Advancement Plaques 1.6.7         amendments: Amendments 1.20-1.2.12         another_furniture: Another Furniture 1.20.1-3.0.1         architectury: Architectury 9.2.14         ati_structures_fabric: ati_structures_fabric 1.1.0         autorun: AutoRun 0.5.0         badpackets: Bad Packets 0.4.3         balm-fabric: Balm 7.3.10             kuma_api: KumaAPI 20.1.9-SNAPSHOT         bbb: Building But Better 1.20.1-fabric-1.0.2         betterdeserttemples: YUNG's Better Desert Temples 1.20-Fabric-3.0.3             org_reflections_reflections: reflections 0.10.2         betterfortresses: YUNG's Better Nether Fortresses 1.20-Fabric-2.0.6         betterjungletemples: YUNG's Better Jungle Temples 1.20-Fabric-2.0.5         bettermineshafts: YUNG's Better Mineshafts 1.20-Fabric-4.0.4         betteroceanmonuments: YUNG's Better Ocean Monuments 1.20-Fabric-3.0.4         betterstrongholds: YUNG's Better Strongholds 1.20-Fabric-4.0.3         betterwitchhuts: YUNG's Better Witch Huts 1.20-Fabric-3.0.3         biomeswevegone: Oh The Biomes We've Gone 1.4.4         bitsandchisels: BitsAndChisels 2.7.3         bobby: Bobby 5.0.1             com_typesafe_config: config 1.4.2             org_spongepowered_configurate-core: configurate-core 4.1.2             org_spongepowered_configurate-hocon: configurate-hocon 4.1.2         boostedbrightness: Boosted Brightness 2.2.0         bountiful: Bountiful 6.0.4+1.20.1         camerapture: Camerapture 1.7.2             io_github_darkxanter_webp-imageio: webp-imageio 0.3.2         carryon: Carry On 2.1.2.7         chat_heads: Chat Heads 0.13.7         chatanimation: ChatAnimation 1.0.5         chimes: Chimes 2.0.1         chunky: Chunky 1.3.146         cloth-config: Cloth Config v11 11.1.136             cloth-basic-math: cloth-basic-math 0.6.1         cloudboots: Cloud Boots 1.20.1-fabric-3.0.0         cobbledex: Cobbledex 1.1.0         cobblefoods: CobbleFoods 1.3.2-1.20.1         cobblemizer: Cobblemon Customizer for Fabric 2.0.2         cobblemon: Cobblemon 1.5.2+1.20.1         cobblemon_chaining: Cobblemon Chaining 1.5-fabric-1.0.1         cobblemon_counter: Cobblemon Counter 1.5-fabric-1.2.0         cobblemon_move_inspector: Cobblemon Move Inspector 1.1.1         cobblemonintegrations: Cobblemon Integrations 1.0.7         cobblemonridingfabric: Cobblemon Riding Fabric 1.2.6         cobblenav: Cobblenav 1.3.5             fabric-permissions-api-v0: fabric-permissions-api 0.2-SNAPSHOT         cobblepedia: Cobblepedia 0.6.8         cobbreeding: Cobbreeding 1.7.0         collective: Collective 7.87         controlling: Controlling For Fabric 12.0.2         convenientdecor: Convenient Decor 0.4.3             omega-config: OmegaConfig 1.4.0+1.20.1         cookingforblockheads: Cooking for Blockheads 16.0.9         corgilib: CorgiLib 4.0.3.3         craftingtweaks: Crafting Tweaks 18.2.5         crafttweaker: CraftTweaker 14.0.44         crawl: Crawl 0.12.0             mm: Manningham Mills 2.3         dailyshop: Daily Shop 1.1.0         defaulted_hotkeys: Defaulted Hotkeys 1.2         defaultoptions: Default Options 18.0.1         dynamiccrosshair: Dynamic Crosshair 9.3             dynamiccrosshair-api: DynamicCrosshair API 1.1             libbamboo: LibBamboo 2.2         dynamiccrosshaircompat: Dynamic Crosshair Compat 4.0         elementa: Elementa 708         emojiful: Emojiful 4.2.0             com_esotericsoftware_yamlbeans_yamlbeans: yamlbeans 1.15         enhancedcelestials: Enhanced Celestials 1.20.1-5.0.1.0         essential: Essential 1.3.8.4         essential-container: essential-container 1.0.0             essential-loader: essential-loader 1.2.4         evenmoreinstruments: Even More Instruments! 6.1.3.1         fabric-api: Fabric API 0.92.2+1.20.1             fabric-api-base: Fabric API Base 0.4.31+1802ada577             fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.36+1802ada577             fabric-biome-api-v1: Fabric Biome API (v1) 13.0.13+1802ada577             fabric-block-api-v1: Fabric Block API (v1) 1.0.11+1802ada577             fabric-block-view-api-v2: Fabric BlockView API (v2) 1.0.1+1802ada577             fabric-blockrenderlayer-v1: Fabric BlockRenderLayer Registration (v1) 1.1.41+1802ada577             fabric-client-tags-api-v1: Fabric Client Tags 1.1.2+1802ada577             fabric-command-api-v1: Fabric Command API (v1) 1.2.34+f71b366f77             fabric-command-api-v2: Fabric Command API (v2) 2.2.13+1802ada577             fabric-commands-v0: Fabric Commands (v0) 0.2.51+df3654b377             fabric-containers-v0: Fabric Containers (v0) 0.1.64+df3654b377             fabric-content-registries-v0: Fabric Content Registries (v0) 4.0.11+1802ada577             fabric-convention-tags-v1: Fabric Convention Tags 1.5.5+1802ada577             fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.2.19+1802ada577             fabric-data-attachment-api-v1: Fabric Data Attachment API (v1) 1.0.0+de0fd6d177             fabric-data-generation-api-v1: Fabric Data Generation API (v1) 12.3.4+1802ada577             fabric-dimensions-v1: Fabric Dimensions API (v1) 2.1.54+1802ada577             fabric-entity-events-v1: Fabric Entity Events (v1) 1.6.0+1c78457f77             fabric-events-interaction-v0: Fabric Events Interaction (v0) 0.6.2+1802ada577             fabric-events-lifecycle-v0: Fabric Events Lifecycle (v0) 0.2.63+df3654b377             fabric-game-rule-api-v1: Fabric Game Rule API (v1) 1.0.40+1802ada577             fabric-item-api-v1: Fabric Item API (v1) 2.1.28+1802ada577             fabric-item-group-api-v1: Fabric Item Group API (v1) 4.0.12+1802ada577             fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.0.37+1802ada577             fabric-keybindings-v0: Fabric Key Bindings (v0) 0.2.35+df3654b377             fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.2.22+1802ada577             fabric-loot-api-v2: Fabric Loot API (v2) 1.2.1+1802ada577             fabric-loot-tables-v1: Fabric Loot Tables (v1) 1.1.45+9e7660c677             fabric-message-api-v1: Fabric Message API (v1) 5.1.9+1802ada577             fabric-mining-level-api-v1: Fabric Mining Level API (v1) 2.1.50+1802ada577             fabric-model-loading-api-v1: Fabric Model Loading API (v1) 1.0.3+1802ada577             fabric-models-v0: Fabric Models (v0) 0.4.2+9386d8a777             fabric-networking-api-v1: Fabric Networking API (v1) 1.3.11+1802ada577             fabric-networking-v0: Fabric Networking (v0) 0.3.51+df3654b377             fabric-object-builder-api-v1: Fabric Object Builder API (v1) 11.1.3+1802ada577             fabric-particles-v1: Fabric Particles (v1) 1.1.2+1802ada577             fabric-recipe-api-v1: Fabric Recipe API (v1) 1.0.21+1802ada577             fabric-registry-sync-v0: Fabric Registry Sync (v0) 2.3.3+1802ada577             fabric-renderer-api-v1: Fabric Renderer API (v1) 3.2.1+1802ada577             fabric-renderer-indigo: Fabric Renderer - Indigo 1.5.2+85287f9f77             fabric-renderer-registries-v1: Fabric Renderer Registries (v1) 3.2.46+df3654b377             fabric-rendering-data-attachment-v1: Fabric Rendering Data Attachment (v1) 0.3.37+92a0d36777             fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 3.0.28+1802ada577             fabric-rendering-v0: Fabric Rendering (v0) 1.1.49+df3654b377             fabric-rendering-v1: Fabric Rendering (v1) 3.0.8+1802ada577             fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 2.3.8+1802ada577             fabric-resource-loader-v0: Fabric Resource Loader (v0) 0.11.10+1802ada577             fabric-screen-api-v1: Fabric Screen API (v1) 2.0.8+1802ada577             fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.3.30+1802ada577             fabric-sound-api-v1: Fabric Sound API (v1) 1.0.13+1802ada577             fabric-transfer-api-v1: Fabric Transfer API (v1) 3.3.5+8dd72ea377             fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 4.3.1+1802ada577         fabric-language-kotlin: Fabric Language Kotlin 1.13.0+kotlin.2.1.0             org_jetbrains_kotlin_kotlin-reflect: kotlin-reflect 2.1.0             org_jetbrains_kotlin_kotlin-stdlib: kotlin-stdlib 2.1.0             org_jetbrains_kotlin_kotlin-stdlib-jdk7: kotlin-stdlib-jdk7 2.1.0             org_jetbrains_kotlin_kotlin-stdlib-jdk8: kotlin-stdlib-jdk8 2.1.0             org_jetbrains_kotlinx_atomicfu-jvm: atomicfu-jvm 0.26.1             org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm: kotlinx-coroutines-core-jvm 1.9.0             org_jetbrains_kotlinx_kotlinx-coroutines-jdk8: kotlinx-coroutines-jdk8 1.9.0             org_jetbrains_kotlinx_kotlinx-datetime-jvm: kotlinx-datetime-jvm 0.6.1             org_jetbrains_kotlinx_kotlinx-io-bytestring-jvm: kotlinx-io-bytestring-jvm 0.6.0             org_jetbrains_kotlinx_kotlinx-io-core-jvm: kotlinx-io-core-jvm 0.6.0             org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm: kotlinx-serialization-cbor-jvm 1.7.3             org_jetbrains_kotlinx_kotlinx-serialization-core-jvm: kotlinx-serialization-core-jvm 1.7.3             org_jetbrains_kotlinx_kotlinx-serialization-json-jvm: kotlinx-serialization-json-jvm 1.7.3         fabricloader: Fabric Loader 0.16.9             mixinextras: MixinExtras 0.4.1         fabricskyboxes: FabricSkyBoxes 0.7.3+mc1.20.1         fancymenu: FancyMenu 3.3.2             com_github_keksuccino_japng: japng 0.5.3             com_github_rtyley_animated-gif-lib-for-java: animated-gif-lib-for-java animated-gif-lib-1.7         faux-custom-entity-data: Faux-Custom-Entity-Data 6.0.1         fightorflight: Cobblemon Fight or Flight Fabric 0.5.0         findme: FindMe 3.2.1         forgeconfigapiport: Forge Config API Port 8.0.1         ftbchunks: FTB Chunks 2001.3.4         ftblibrary: FTB Library 2001.2.7         ftbranks: FTB Ranks 2001.1.3         ftbteams: FTB Teams 2001.3.0         geckolib: GeckoLib 4 4.4.9             com_eliotlash_mclib_mclib: mclib 20         genshinstrument: Genshin Instruments 4.0.2         globalgamerule: Global Game Rule 1.1         globalpacks: Global Data- & Resourcepacks 1.16.1_fabric         gooeylibs: GooeyLibs 3.0.0+1.20.1         gravels_extended_battles: Gravel's Extended Battles 1.4.0         hearth_and_home: Hearth & Home 1.20.1-2.0.3         heartstone: Heartstone 1.20-1.3.0         hopobetterunderwaterruins: Hopo Better Underwater Ruins 1.1.5         hotkettles: Hot Kettles 1.0.0+mc1.20.1         hunt: Hunt 1.1.0         iceberg: Iceberg 1.1.25         impactor: Impactor 5.2.6+1.20.1             adventure-platform-fabric: adventure-platform-fabric 5.9.0                 net_kyori_adventure-platform-api: adventure-platform-api 4.3.0                 net_kyori_adventure-text-serializer-ansi: adventure-text-serializer-ansi 4.14.0                 net_kyori_ansi: ansi 1.0.2             cloud: Cloud 2.0.0-beta.2                 org_incendo_cloud-brigadier: cloud-brigadier 2.0.0-beta.2                 org_incendo_cloud-core: cloud-core 2.0.0-beta.2                 org_incendo_cloud-minecraft-modded-common-fabric-repack_: cloud-minecraft-modded-common-fabric-repack 2.0.0-beta.2                 org_incendo_cloud-services: cloud-services 2.0.0-beta.2             impactor-command-api: Impactor Command API 5.2.5+1.20.1-SNAPSHOT             io_leangen_geantyref_geantyref: geantyref 1.3.15             net_kyori_adventure-api: adventure-api 4.14.0             net_kyori_adventure-key: adventure-key 4.14.0             net_kyori_adventure-nbt: adventure-nbt 4.14.0             net_kyori_adventure-text-logger-slf4j: adventure-text-logger-slf4j 4.14.0             net_kyori_adventure-text-minimessage: adventure-text-minimessage 4.14.0             net_kyori_adventure-text-serializer-gson: adventure-text-serializer-gson 4.14.0             net_kyori_adventure-text-serializer-json: adventure-text-serializer-json 4.14.0             net_kyori_adventure-text-serializer-legacy: adventure-text-serializer-legacy 4.14.0             net_kyori_adventure-text-serializer-plain: adventure-text-serializer-plain 4.14.0             net_kyori_event-api: event-api 5.0.0-SNAPSHOT             net_kyori_examination-api: examination-api 1.3.0             net_kyori_examination-string: examination-string 1.3.0             org_incendo_cloud-annotations: cloud-annotations 2.0.0-beta.2             org_incendo_cloud-minecraft-extras: cloud-minecraft-extras 2.0.0-beta.2             org_incendo_cloud-processors-common: cloud-processors-common 1.0.0-beta.1             org_incendo_cloud-processors-confirmation: cloud-processors-confirmation 1.0.0-beta.1             placeholder-api: Placeholder API 2.1.3+1.20.1         indium: Indium 1.0.34+mc1.20.1         ipo: Improved Pillager Outpost 3         iris: Iris 1.7.5+mc1.20.1             io_github_douira_glsl-transformer: glsl-transformer 2.0.1             org_anarres_jcpp: jcpp 1.4.14             org_antlr_antlr4-runtime: antlr4-runtime 4.13.1         item_obliterator: Item Obliterator 2.3.0         java: OpenJDK 64-Bit Server VM 17         journeymap: Journeymap 5.10.3             journeymap-api-fabric: JourneyMap API 1.20-1.9-fabric-SNAPSHOT         justhammers: Just Hammers 2.0.4+mc1.20.1         kambrik: Kambrik 6.1.1+1.20.1         konkrete: Konkrete 1.8.1         kubejs: Star Academy 2001.6.5-build.16         labels: labels 1.20-1.20.2         legendarytooltips: Legendary Tooltips 1.4.5         lootbags: Resourceful Lootbags 2.0.0             resourcefullib: Resourceful Lib 2.0.8                 com_teamresourceful_yabn: yabn 1.0.3         lootballs: Cobblemon Loot Balls 1.1.4         lootbeams: LootBeams 3.1.1-mc1.20-.4         lootr: Lootr 0.7.35.85         megamons: Ascension Megamons 1.5.0+1.20.1-forge+fabric-75b66fa         melody: Melody 1.0.3         midnightlib: MidnightLib 1.4.1         minecraft: Minecraft 1.20.1         mint: El & L's Dye Mod 1.0.5+1.20.1         modernfix: ModernFix 5.19.7+mc1.20.1         modmenu: Mod Menu 7.2.2         moonlight: Moonlight 1.20-2.13.41         more_cobblemon_tweaks: MoreCobblemonTweaks 0.7.1         mousetweaks: Mouse Tweaks 2.26         mousewheelie: Mouse Wheelie 1.13.0+mc1.20.1             amecsapi: Amecs API 1.5.1+mc1.20-pre1             coat: Coat 1.0.0-beta.20+mc1.20-pre1             tweed4_annotated: tweed4_annotated 1.3.1+mc1.20-pre1             tweed4_base: tweed4_base 1.7.1+mc1.20-pre1             tweed4_data: tweed4_data 1.2.1+mc1.20-pre1             tweed4_data_hjson: tweed4_data_hjson 1.1.1+mc1.20-pre1             tweed4_tailor_coat: tweed4_tailor_coat 1.1.3+mc1.20-pre1             tweed4_tailor_lang_json_descriptions: tweed4_tailor_lang_json_descriptions 1.1.0+mc1.20-pre1             tweed4_tailor_screen: tweed4_tailor_screen 1.1.4+mc1.20-pre1         mr_tidal_towns: Tidal Towns 1.3.4         mss: Moog's Soaring Structures 1.2.6-1.20-fabric         muffins_picnic: Muffin's Picnic 1.0.0         mvs: Moog's Voyager Structures 4.1.4-1.20-fabric         mythsandlegends: Myths and Legends 1.6.1             com_moandjiezana_toml_toml4j: toml4j 0.7.2         naturescompass: Nature's Compass 1.20.1-2.2.3-fabric         necronomicon: Necronomicon 1.6.0         nightlights: Night Lights 1.1         numismatic-overhaul: Numismatic Overhaul 0.2.14+1.20             cardinal-components-base: Cardinal Components API (base) 5.2.1             cardinal-components-entity: Cardinal Components API (entities) 5.2.1             stacc: Stacc 1.7.0         ohthetreesyoullgrow: Oh The Trees You'll Grow 1.20.1-1.3.3         org_jetbrains_annotations: annotations 13.0         owo: oωo 0.11.2+1.20         packetfixer: Packet Fixer 2.0.0         patchouli: Patchouli 1.20.1-84-FABRIC             fiber: fiber 0.23.0-2         pehkui: Pehkui 3.8.3+1.14.4-1.21             kanos_config: Kanos Config 0.4.1+1.14.4-1.19.4         player_roles: Player Roles 1.6.6             more_codecs: More Codecs 0.3.1+1.19.4             player_roles_api: Player Roles API 1.6.6         playerladder: Player Ladder 0.6.0-1.20         pokeblocks: Pokeblocks 1.3.0-1.20.1         prism: Prism 1.0.5         puzzleslib: Puzzles Lib 8.1.25             puzzlesaccessapi: Puzzles Access Api 8.0.7         resourcepackoverrides: Resource Pack Overrides 8.0.3         rhino: Rhino 2001.2.3-build.6         roughlyenoughitems: Roughly Enough Items 12.1.785             error_notifier: Error Notifier 1.0.9         seamless_loading_screen: Seamless Loading Screen 2.0.3+1.20.1         searchables: Searchables 1.0.3         server-hats: Server Hats 0.16         shadertoggle: Shader Toggle 1.0         shouldersurfing: Shoulder Surfing Reloaded 4.9.1         sit: Sit 1.20.1-27         slide_show: Slide Show 1.0.3-Enhancement-1         smoothswapping: Smooth Swapping 0.9.3.1         sodium: Sodium 0.5.11+mc1.20.1         sodium-extra: Sodium Extra 0.5.4+mc1.20.1-build.115             caffeineconfig: CaffeineConfig 1.3.0+1.17             crowdin-translate: CrowdinTranslate 1.4+1.19.3         solara_dimension: Solara Dimension  0.1A         sophisticatedbackpacks: Sophisticated Backpacks 1.20.1-3.20.17.1.60         sophisticatedcore: Sophisticated Core 1.20.1-0.7.12.2.96             porting_lib_extensions: Porting Lib Extensions 2.3.2+1.20.1                 porting_lib_accessors: Porting Lib Accessors 2.3.2+1.20.1                 porting_lib_attributes: Porting Lib Attributes 2.3.2+1.20.1                 porting_lib_common: Porting Lib Common 2.3.2+1.20.1                 reach-entity-attributes: Reach Entity Attributes 2.4.0             porting_lib_fluids: Porting Lib Fluids 2.3.2+1.20.1             porting_lib_loot: Porting Lib Loot 2.3.2+1.20.1                 porting_lib_lazy_registration: Porting Lib Lazy Register 2.3.2+1.20.1             porting_lib_model_loader: Porting Lib Model Loader 2.3.2+1.20.1             porting_lib_networking: Porting Lib Networking 2.3.2+1.20.1                 porting_lib_core: Porting Lib Core 2.3.2+1.20.1             porting_lib_tool_actions: Porting Lib Tool Actions 2.3.2+1.20.1             porting_lib_transfer: Porting Lib Transfer 2.3.2+1.20.1             team_reborn_energy: Energy 3.0.0         sophisticatedstorage: Sophisticated Storage 1.20.1-0.11.3.1.73             noindium: No Indium? 1.1.0+1.20         spawnercontrol: Spawner Control 1.1         starterkit: Starter Kit 7.1         stoneworks: Stoneworks 8.0.0         terrablender: TerraBlender 3.0.1.7         terrastorage: Terrastorage 1.0.7             com_electronwill_night-config_core: core 3.8.1             com_electronwill_night-config_toml: toml 3.8.1         terrastorageicons: Terrastorage Icons 1.0.0         toastkiller: The Open Sauce Toast Killer 1.0         toms_storage: Tom's Simple Storage Mod 1.6.9         totw_modded: Towers Of The Wild: Modded fabric-1.20.1-1.0.5         travelerstitles: Traveler's Titles 1.20-Fabric-4.0.2         treeharvester: Tree Harvester 9.1         trinkets: Trinkets 3.7.2         universalcraft: UniversalCraft 419         veinmining: Vein Mining 1.5.0+1.20.1             spectrelib: SpectreLib 0.13.15+1.20.1         vigilance: Vigilance 306         voicechat: Simple Voice Chat 1.20.1-2.5.26         waystones: Waystones 14.1.6         wherearemytms: Where Are My TMs? 2.1.2-hotfix         worldedit: WorldEdit 7.2.15+6463-5ca4dff         wthit: wthit 8.15.5         wwoo: William Wythers' Overhauled Overworld 2.0.0         yet_another_config_lib_v3: YetAnotherConfigLib 3.6.2+1.20.1-fabric             com_twelvemonkeys_common_common-image: common-image 3.12.0             com_twelvemonkeys_common_common-io: common-io 3.12.0             com_twelvemonkeys_common_common-lang: common-lang 3.12.0             com_twelvemonkeys_imageio_imageio-core: imageio-core 3.12.0             com_twelvemonkeys_imageio_imageio-metadata: imageio-metadata 3.12.0             com_twelvemonkeys_imageio_imageio-webp: imageio-webp 3.12.0             org_quiltmc_parsers_gson: gson 0.2.1             org_quiltmc_parsers_json: json 0.2.1         yetanotherchancebooster: YetAnotherChanceBooster 1.0.1         yungsapi: YUNG's API 1.20-Fabric-4.0.6             org_javassist_javassist: javassist 3.29.2-GA         zoomify: Zoomify 2.14.2+1.20.1             com_akuleshov7_ktoml-core-jvm: ktoml-core-jvm 0.5.2     Loaded Shaderpack: (off)     Server Running: true     Player Count: 0 / 8; []     Data Packs: vanilla, fabric, bountiful:compat-numismatic-overhaul, AllTheMons Release 1.8.2 V129, BattleBond [V1.4] (incompatible), CobbleCafe (incompatible), MSS-ConfigPack-1.19+ (incompatible), MVS-ConfigPack-1.19+ (incompatible), Missing Legends V1.2[No Genesect or Regi Resize], Moonlight Mods Dynamic Assets, MythsandLegends-Datapack-v1.0.4, PokeSizes-1.1.1, Vivillon Pride Patterns v1.0, _Star Academy_, bopack, capture-border-v1.0.0 (incompatible)     Enabled Feature Flags: minecraft:vanilla     World Generation: Stable     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'fabric'; Server brand changed to 'fabric'     Launched Version: fabric-loader-0.16.9-1.20.1
    • just got my new pc and updated the modpack i backed up and it crashes when i load or make a new one, can someone help, it worked before so i dont know whats wrong??   ---- Minecraft Crash Report ---- WARNING: coremods are present:   Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.151.jar)   MalisisSwitchesPlugin (malisisswitches-1.12.2-5.1.0.jar)   LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)   RandomPatches (randompatches-1.12.2-1.22.1.10.jar)   Aqua Acrobatics Transformer (AquaAcrobatics-1.15.4.jar)   Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   clothesline-hooks (clothesline-hooks-1.12.2-0.0.1.2.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   MixinLoader (Locks-1.12.2-3.0.0.jar)   OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   Plugin (NotEnoughIDs-1.5.4.4.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.10.jar)   SecretRoomsMod-Core (secretroomsmod-1.12.2-5.6.4.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar) Contact their authors BEFORE contacting forge // Surprise! Haha. Well, this is awkward. Time: 7/9/25 10:29 PM Description: Ticking memory connection java.lang.NullPointerException: Ticking memory connection     at com.wynprice.secretroomsmod.handler.HandlerUpdateChecker.onPlayerJoin(HandlerUpdateChecker.java:74)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_932_HandlerUpdateChecker_onPlayerJoin_EntityJoinWorldEvent.invoke(.dynamic)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)     at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)     at net.minecraft.world.World.spawnEntity(World.java:1209)     at net.minecraft.world.WorldServer.spawnEntity(WorldServer.java:1058)     at net.minecraft.server.management.PlayerList.playerLoggedIn(PlayerList.java:377)     at net.minecraft.server.management.PlayerList.initializeConnectionToPlayer(PlayerList.java:166)     at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:255)     at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:72)     at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:205)     at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:285)     at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:180)     at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:790)     at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:668)     at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:185)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)     at java.lang.Thread.run(Thread.java:745) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace:     at com.wynprice.secretroomsmod.handler.HandlerUpdateChecker.onPlayerJoin(HandlerUpdateChecker.java:74)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_932_HandlerUpdateChecker_onPlayerJoin_EntityJoinWorldEvent.invoke(.dynamic)     at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)     at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)     at net.minecraft.world.World.spawnEntity(World.java:1209)     at net.minecraft.world.WorldServer.spawnEntity(WorldServer.java:1058)     at net.minecraft.server.management.PlayerList.playerLoggedIn(PlayerList.java:377)     at net.minecraft.server.management.PlayerList.initializeConnectionToPlayer(PlayerList.java:166)     at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:255)     at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:72)     at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.update(NetworkDispatcher.java:205)     at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:285) -- Ticking connection -- Details:     Connection: net.minecraft.network.NetworkManager@41760235 Stacktrace:     at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:180)     at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:790)     at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:668)     at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:185)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)     at java.lang.Thread.run(Thread.java:745) -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 1367645736 bytes (1304 MB) / 6349127680 bytes (6055 MB) up to 10468982784 bytes (9984 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx11232m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 15, tallocated: 95     FML: MCP 9.42 Powered by Forge 14.23.5.2860 214 mods loaded, 214 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State  | ID                                | Version                                                        | Source                                               | Signature                                |     |:------ |:--------------------------------- |:-------------------------------------------------------------- |:---------------------------------------------------- |:---------------------------------------- |     | LCHIJA | minecraft                         | 1.12.2                                                         | minecraft.jar                                        | None                                     |     | LCHIJA | mcp                               | 9.42                                                           | minecraft.jar                                        | None                                     |     | LCHIJA | FML                               | 8.0.99.99                                                      | forge-1.12.2-14.23.5.2860.jar                        | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCHIJA | forge                             | 14.23.5.2860                                                   | forge-1.12.2-14.23.5.2860.jar                        | e3c3d50c7c986df74c645c0ac54639741c90a557 |     | LCHIJA | openmodscore                      | 0.12.2                                                         | minecraft.jar                                        | None                                     |     | LCHIJA | foamfixcore                       | 7.7.4                                                          | minecraft.jar                                        | None                                     |     | LCHIJA | obfuscate                         | 0.4.2                                                          | minecraft.jar                                        | None                                     |     | LCHIJA | srm-hooks                         | 1.12.2-1.0.0                                                   | minecraft.jar                                        | None                                     |     | LCHIJA | clothesline-hooks                 | 1.12.2-0.0.1.2                                                 | minecraft.jar                                        | None                                     |     | LCHIJA | randompatches                     | 1.12.2-1.22.1.10                                               | randompatches-1.12.2-1.22.1.10.jar                   | None                                     |     | LCHIJA | skinlayers3d                      | 1.2.0                                                          | 3dSkinLayers-forge-mc1.12.2-1.2.0.jar                | None                                     |     | LCHIJA | freecam                           | 2.0.0                                                          | zergatul.freecam-2.0.0-forge-1.12.2.jar              | None                                     |     | LCHIJA | essential                         | 1.0.0                                                          | Essential (forge_1.12.2).processed.jar               | None                                     |     | LCHIJA | securitycraft                     | v1.10                                                          | [1.12.2] SecurityCraft v1.10.jar                     | None                                     |     | LCHIJA | trop                              | 24.07.19                                                       | [1.12.2] The Rings of Power 24.07.19 (Forge).jar     | None                                     |     | LCHIJA | actuallyadditions                 | 1.12.2-r152                                                    | ActuallyAdditions-1.12.2-r152.jar                    | None                                     |     | LCHIJA | baubles                           | 1.5.2                                                          | Baubles-1.12-1.5.2.jar                               | None                                     |     | LCHIJA | actuallybaubles                   | 1.1                                                            | ActuallyBaubles-1.12-1.1.jar                         | None                                     |     | LCHIJA | ctm                               | MC1.12.2-1.0.2.31                                              | CTM-MC1.12.2-1.0.2.31.jar                            | None                                     |     | LCHIJA | appliedenergistics2               | rv6-stable-7                                                   | appliedenergistics2-rv6-stable-7.jar                 | dfa4d3ac143316c6f32aa1a1beda1e34d42132e5 |     | LCHIJA | endercore                         | 1.12.2-0.5.78                                                  | EnderCore-1.12.2-0.5.78.jar                          | None                                     |     | LCHIJA | crafttweaker                      | 4.1.20                                                         | CraftTweaker2-1.12-4.1.20.704.jar                    | None                                     |     | LCHIJA | jei                               | 4.16.1.301                                                     | jei_1.12.2-4.16.1.301.jar                            | None                                     |     | LCHIJA | codechickenlib                    | 3.2.3.358                                                      | CodeChickenLib-1.12.2-3.2.3.358-universal.jar        | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | redstoneflux                      | 2.1.1                                                          | RedstoneFlux-1.12-2.1.1.1-universal.jar              | None                                     |     | LCHIJA | cofhcore                          | 4.6.6                                                          | CoFHCore-1.12.2-4.6.6.1-universal.jar                | None                                     |     | LCHIJA | cofhworld                         | 1.4.0                                                          | CoFHWorld-1.12.2-1.4.0.1-universal.jar               | None                                     |     | LCHIJA | thermalfoundation                 | 2.6.7                                                          | ThermalFoundation-1.12.2-2.6.7.1-universal.jar       | None                                     |     | LCHIJA | thermalexpansion                  | 5.5.7                                                          | ThermalExpansion-1.12.2-5.5.7.1-universal.jar        | None                                     |     | LCHIJA | enderio                           | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | mantle                            | 1.12-1.3.3.55                                                  | Mantle-1.12-1.3.3.55.jar                             | None                                     |     | LCHIJA | projecte                          | 1.12.2-PE1.4.1                                                 | ProjectE-1.12.2-PE1.4.1.jar                          | None                                     |     | LCHIJA | chisel                            | MC1.12.2-1.0.2.45                                              | Chisel-MC1.12.2-1.0.2.45.jar                         | None                                     |     | LCHIJA | enderiointegrationtic             | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | tconstruct                        | 1.12.2-2.13.0.183                                              | TConstruct-1.12.2-2.13.0.183.jar                     | None                                     |     | LCHIJA | p455w0rdslib                      | 2.3.161                                                        | p455w0rdslib-1.12.2-2.3.161.jar                      | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCHIJA | ae2wtlib                          | 1.0.34                                                         | AE2WTLib-1.12.2-1.0.34.jar                           | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCHIJA | appleskin                         | 1.0.14                                                         | AppleSkin-mc1.12-1.0.14.jar                          | None                                     |     | LCHIJA | aquaacrobatics                    | 1.15.4                                                         | AquaAcrobatics-1.15.4.jar                            | None                                     |     | LCHIJA | betterbuilderswands               | 0.11.1                                                         | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar      | None                                     |     | LCHIJA | betternether                      | 0.1.8.6                                                        | betternether-0.1.8.6.jar                             | None                                     |     | LCHIJA | bibliocraft                       | 2.4.6                                                          | BiblioCraft[v2.4.6][MC1.12.2].jar                    | None                                     |     | LCHIJA | biomesoplenty                     | 7.0.1.2445                                                     | BiomesOPlenty-1.12.2-7.0.1.2445-universal.jar        | None                                     |     | LCHIJA | guideapi                          | 1.12-2.1.8-63                                                  | Guide-API-1.12-2.1.8-63.jar                          | None                                     |     | LCHIJA | bloodmagic                        | 1.12.2-2.4.3-105                                               | BloodMagic-1.12.2-2.4.3-105.jar                      | None                                     |     | LCHIJA | bloodtinker                       | 1.0.5                                                          | bloodtinker-1.0.5.jar                                | None                                     |     | LCHIJA | bmj                               | 0.0.1-beta                                                     | bmj-1.0.2.jar                                        | None                                     |     | LCHIJA | bonsaitrees                       | 1.1.4                                                          | bonsaitrees-1.1.4-b170.jar                           | None                                     |     | LCHIJA | botania                           | r1.10-364                                                      | Botania r1.10-364.4.jar                              | None                                     |     | LCHIJA | spawnermod                        | 1.0-1.12.2                                                     | branders-enhanced-mob-spawners-v1.12.2-1.4.4.jar.jar | None                                     |     | LCHIJA | buildcraftlib                     | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcraftcore                    | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcraftbuilders                | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcrafttransport               | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcraftsilicon                 | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcraftcompat                  | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcraftenergy                  | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcraftfactory                 | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildcraftrobotics                | 8.0.0                                                          | buildcraft-all-8.0.0.jar                             | None                                     |     | LCHIJA | buildinggadgets                   | 2.8.4                                                          | BuildingGadgets-2.8.4.jar                            | None                                     |     | LCHIJA | camera                            | 1.0.10                                                         | camera-1.0.10.jar                                    | None                                     |     | LCHIJA | carryon                           | 1.12.3                                                         | carryon-1.12.2-1.12.7.23.jar                         | None                                     |     | LCHIJA | ceramics                          | 1.12-1.3.7b                                                    | Ceramics-1.12-1.3.7b.jar                             | None                                     |     | LCHIJA | chameleon                         | 1.12-4.1.3                                                     | Chameleon-1.12-4.1.3.jar                             | None                                     |     | LCHIJA | chancecubes                       | 1.12.2-5.0.2.385                                               | ChanceCubes-1.12.2-5.0.2.385.jar                     | None                                     |     | LCHIJA | chickens                          | 6.0.4                                                          | chickens-6.0.4.jar                                   | None                                     |     | LCHIJA | chiselsandbits                    | 14.33                                                          | chiselsandbits-14.33.jar                             | None                                     |     | LCHIJA | cjcm                              | 1.0                                                            | cjcm-1.0.jar                                         | None                                     |     | LCHIJA | sanlib                            | 1.6.3                                                          | SanLib-1.12.2-1.6.3.jar                              | 4aad6d31d04fd4b54ac08427561b110ee66198fd |     | LCHIJA | claysoldiers                      | 3.0.0-beta.2                                                   | ClaySoldiersMod-1.12.2-3.0.0-beta.2.jar              | None                                     |     | LCHIJA | cucumber                          | 1.1.3                                                          | Cucumber-1.12.2-1.1.3.jar                            | None                                     |     | LCHIJA | mysticalagriculture               | 1.7.5                                                          | MysticalAgriculture-1.12.2-1.7.5.jar                 | None                                     |     | LCHIJA | mysticalagradditions              | 1.3.2                                                          | MysticalAgradditions-1.12.2-1.3.2.jar                | None                                     |     | LCHIJA | engineersdecor                    | 1.1.5                                                          | engineersdecor-1.12.2-1.1.5.jar                      | ed58ed655893ced6280650866985abcae2bf7559 |     | LCHIJA | immersiveengineering              | 0.12-98                                                        | ImmersiveEngineering-0.12-98.jar                     | None                                     |     | LCHIJA | clochepp                          | 1.0.3                                                          | cloche-profit-peripheral-1.12.2-1.0.3.jar            | None                                     |     | LCHIJA | clumps                            | 3.1.2                                                          | Clumps-3.1.2.jar                                     | None                                     |     | LCHIJA | controlling                       | 3.0.10                                                         | Controlling-3.0.12.4.jar                             | None                                     |     | LCHIJA | cookingforblockheads              | 6.5.0                                                          | CookingForBlockheads_1.12.2-6.5.0.jar                | None                                     |     | LCHIJA | ctgui                             | 1.0.0                                                          | CraftTweaker2-1.12-4.1.20.704.jar                    | None                                     |     | LCHIJA | crafttweakerjei                   | 2.0.3                                                          | CraftTweaker2-1.12-4.1.20.704.jar                    | None                                     |     | LCHIJA | decorative_gaming_consoles        | 1.1.0                                                          | decorative-gaming-consoles-forge-1.12.2-1.1.0.jar    | None                                     |     | LCHIJA | supermartijn642configlib          | 1.1.6                                                          | supermartijn642configlib-1.1.8-forge-mc1.12.jar      | None                                     |     | LCHIJA | durabilitytooltip                 | 1.1.4                                                          | durabilitytooltip-1.1.5-forge-mc1.12.jar             | None                                     |     | LCHIJA | effortlessbuilding                | 1.12.2-2.16                                                    | effortlessbuilding-1.12.2-2.16.jar                   | None                                     |     | LCHIJA | elementalitems                    | 1.8                                                            | elementalitems-1.12.2-14.23.2.2625-1.8.jar           | None                                     |     | LCHIJA | elevatorid                        | 1.3.14                                                         | ElevatorMod-1.12.2-1.3.14.jar                        | None                                     |     | LCHIJA | embers                            | 0.230                                                          | embers-0.230.jar                                     | None                                     |     | LCHIJA | enchdesc                          | 1.1.15                                                         | EnchantmentDescriptions-1.12.2-1.1.15.jar            | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | enderiobase                       | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderioconduits                   | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderioconduitsappliedenergistics | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderioconduitsopencomputers      | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderioconduitsrefinedstorage     | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderiointegrationforestry        | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderiointegrationticlate         | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderioinvpanel                   | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderiomachines                   | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderiopowertools                 | 5.3.72                                                         | EnderIO-1.12.2-5.3.72.jar                            | None                                     |     | LCHIJA | enderstorage                      | 2.4.6.137                                                      | EnderStorage-1.12.2-2.4.6.137-universal.jar          | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | engineersdoors                    | 0.9.1                                                          | engineers_doors-1.12.2-0.9.1.jar                     | None                                     |     | LCHIJA | forgelin                          | 1.8.4                                                          | Forgelin-1.8.4.jar                                   | None                                     |     | LCHIJA | exnihilocreatio                   | 1.12.2-0.4.7.2                                                 | exnihilocreatio-1.12.2-0.4.7.2.jar                   | None                                     |     | LCHIJA | excompressum                      | 3.0.32                                                         | ExCompressum_1.12.2-3.0.32.jar                       | None                                     |     | LCHIJA | waila                             | 1.8.26                                                         | Hwyla-1.8.26-B41_1.12.2.jar                          | None                                     |     | LCHIJA | extrabotany                       | 58                                                             | ExtraBotany-r1.1-58r.jar                             | None                                     |     | LCHIJA | extracells                        | 2.6.7                                                          | ExtraCells-1.12.2-2.6.7.jar                          | None                                     |     | LCHIJA | extrautils2                       | 1.0                                                            | extrautils2-1.12-1.9.9.jar                           | None                                     |     | LCHIJA | zerocore                          | 1.12.2-0.1.2.9                                                 | zerocore-1.12.2-0.1.2.9.jar                          | None                                     |     | LCHIJA | bigreactors                       | 1.12.2-0.4.5.68                                                | ExtremeReactors-1.12.2-0.4.5.68.jar                  | None                                     |     | LCHIJA | farmingforblockheads              | 3.1.28                                                         | FarmingForBlockheads_1.12.2-3.1.28.jar               | None                                     |     | LCHIJA | fluxnetworks                      | 4.1.0                                                          | FluxNetworks-1.12.2-4.1.1.34.jar                     | None                                     |     | LCHIJA | foamfix                           | @VERSION@                                                      | foamfix-0.10.15-1.12.2.jar                           | None                                     |     | LCHIJA | forgemultipartcbe                 | 2.6.2.83                                                       | ForgeMultipart-1.12.2-2.6.2.83-universal.jar         | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | microblockcbe                     | 2.6.2.83                                                       | ForgeMultipart-1.12.2-2.6.2.83-universal.jar         | None                                     |     | LCHIJA | minecraftmultipartcbe             | 2.6.2.83                                                       | ForgeMultipart-1.12.2-2.6.2.83-universal.jar         | None                                     |     | LCHIJA | cfm                               | 6.3.0                                                          | furniture-6.3.2-1.12.2.jar                           | None                                     |     | LCHIJA | cgm                               | 0.15.3                                                         | guns-0.15.3-1.12.2.jar                               | None                                     |     | LCHIJA | hatchery                          | 2.2.2                                                          | hatchery-1.12.2-2.2.2.jar                            | None                                     |     | LCHIJA | ichunutil                         | 7.2.2                                                          | iChunUtil-1.12.2-7.2.2.jar                           | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LCHIJA | hats                              | 7.1.1                                                          | Hats-1.12.2-7.1.1.jar                                | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LCHIJA | hatstand                          | 7.1.0                                                          | HatStand-1.12.2-7.1.0.jar                            | None                                     |     | LCHIJA | immersivepetroleum                | 1.1.10                                                         | immersivepetroleum-1.12.2-1.1.10.jar                 | None                                     |     | LCHIJA | industrialdecor                   | V-22.1120                                                      | industrialdecor_1.12.2_v21.1120.jar                  | None                                     |     | LCHIJA | industrial_decor                  | 1.0.0                                                          | industrialdecor_1.12.2_v21.1120.jar                  | None                                     |     | LCHIJA | mekanism                          | 1.12.2-9.8.3.390                                               | Mekanism-1.12.2-9.8.3.390.jar                        | None                                     |     | LCHIJA | teslacorelib                      | 1.0.18                                                         | tesla-core-lib-1.12.2-1.0.18.jar                     | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | industrialforegoing               | 1.12.2-1.12.2                                                  | industrialforegoing-1.12.2-1.12.13-237.jar           | None                                     |     | LCHIJA | inventorytweaks                   | 1.64+dev.151.822d839                                           | InventoryTweaks-1.64+dev.151.jar                     | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |     | LCHIJA | ironbackpacks                     | 1.12.2-3.0.8-12                                                | IronBackpacks-1.12.2-3.0.8-12.jar                    | None                                     |     | LCHIJA | ironchest                         | 1.12.2-7.0.67.844                                              | ironchest-1.12.2-7.0.72.847.jar                      | None                                     |     | LCHIJA | jetorches                         | 2.1.0                                                          | jetorches-1.12.2-2.1.0.jar                           | None                                     |     | LCHIJA | journeymap                        | 1.12.2-5.7.1p3                                                 | journeymap-1.12.2-5.7.1p3.jar                        | None                                     |     | LCHIJA | jee                               | 1.0.8                                                          | JustEnoughEnergistics-1.12.2-1.0.8.jar               | None                                     |     | LCHIJA | justenoughreactors                | 1.1.3.61                                                       | JustEnoughReactors-1.12.2-1.1.3.61.jar               | 2238d4a92d81ab407741a2fdb741cebddfeacba6 |     | LCHIJA | jeresources                       | 0.9.2.60                                                       | JustEnoughResources-1.12.2-0.9.2.60.jar              | None                                     |     | LCHIJA | locks                             | 3.0.0                                                          | Locks-1.12.2-3.0.0.jar                               | None                                     |     | LCHIJA | lootbags                          | 2.5.8.5                                                        | LootBags-1.12.2-2.5.8.5.jar                          | None                                     |     | LCHIJA | magic_doorknob                    | 1.12.2-0.0.4.548                                               | MagicDoorknob-1.12.2-0.0.4.548.jar                   | None                                     |     | LCHIJA | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT                                          | malisiscore-1.12.2-6.5.1.jar                         | None                                     |     | LCHIJA | malisisdoors                      | 1.12.2-7.3.0                                                   | malisisdoors-1.12.2-7.3.0.jar                        | None                                     |     | LCHIJA | malisisswitches                   | 1.12.2-5.1.0                                                   | malisisswitches-1.12.2-5.1.0.jar                     | None                                     |     | LCHIJA | mcjtylib_ng                       | 3.5.4                                                          | mcjtylib-1.12-3.5.4.jar                              | None                                     |     | LCHIJA | mekanismgenerators                | 1.12.2-9.8.3.390                                               | MekanismGenerators-1.12.2-9.8.3.390.jar              | None                                     |     | LCHIJA | mekanismtools                     | 1.12.2-9.8.3.390                                               | MekanismTools-1.12.2-9.8.3.390.jar                   | None                                     |     | LCHIJA | mob_grinding_utils                | 0.3.13                                                         | MobGrindingUtils-0.3.13.jar                          | None                                     |     | LCHIJA | morebuckets                       | 1.0.4                                                          | MoreBuckets-1.12.2-1.0.4.jar                         | None                                     |     | LCHIJA | morechickens                      | 3.1.0                                                          | morechickens-1.12.2-3.1.0.jar                        | None                                     |     | LCHIJA | moreoverlays                      | 1.15.1                                                         | moreoverlays-1.15.1-mc1.12.2.jar                     | None                                     |     | LCHIJA | guilib                            | $version                                                       | morepaintings-paintings-1.12.2-5.0.1.2.jar           | None                                     |     | LCHIJA | paintingselgui                    | $version                                                       | morepaintings-paintings-1.12.2-5.0.1.2.jar           | None                                     |     | LCHIJA | morepaintings                     | $version                                                       | morepaintings-paintings-1.12.2-5.0.1.2.jar           | None                                     |     | LCHIJA | morph                             | 7.2.0                                                          | Morph-1.12.2-7.2.1.jar                               | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LCHIJA | mousetweaks                       | 2.10                                                           | MouseTweaks-2.10-mc1.12.2.jar                        | None                                     |     | LCHIJA | mrtjpcore                         | 2.1.4.43                                                       | MrTJPCore-1.12.2-2.1.4.43-universal.jar              | None                                     |     | LCHIJA | mystagradcompat                   | 1.2                                                            | mystagradcompat-1.2.jar                              | None                                     |     | LCHIJA | naturescompass                    | 1.8.5                                                          | NaturesCompass-1.12.2-1.8.5.jar                      | None                                     |     | LCHIJA | nefdecomod                        | 0.9                                                            | NefsMedievalPub+v0.9(1.12.2).jar                     | None                                     |     | LCHIJA | norecipebook                      | 1.2.1                                                          | noRecipeBook_v1.2.2formc1.12.2.jar                   | None                                     |     | LCHIJA | neid                              | 1.5.4.4                                                        | NotEnoughIDs-1.5.4.4.jar                             | None                                     |     | LCHIJA | omlib                             | 3.1.5-256                                                      | omlib-1.12.2-3.1.5-256.jar                           | None                                     |     | LCHIJA | ompd                              | 3.1.1-76                                                       | ompd-1.12.2-3.1.1-76.jar                             | None                                     |     | LCHIJA | openmods                          | 0.12.2                                                         | OpenModsLib-1.12.2-0.12.2.jar                        | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |     | LCHIJA | openblocks                        | 1.8.1                                                          | OpenBlocks-1.12.2-1.8.1.jar                          | d2a9a8e8440196e26a268d1f3ddc01b2e9c572a5 |     | LCHIJA | openmodularturrets                | 3.1.14-382                                                     | openmodularturrets-1.12.2-3.1.14-382.jar             | None                                     |     | LCHIJA | ordinarycoins                     | 1.5                                                            | ordinarycoins-1.12.2-1.5.jar                         | None                                     |     | LCHIJA | oreexcavation                     | 1.4.150                                                        | OreExcavation-1.4.150.jar                            | None                                     |     | LCHIJA | packcrashinfo                     | %VERSION%                                                      | packcrashinfo-1.0.1.jar                              | None                                     |     | LCHIJA | harvestcraft                      | 1.12.2zb                                                       | Pam's HarvestCraft 1.12.2zg.jar                      | None                                     |     | LCHIJA | pgwbandedtorches                  | 0.9.20200801                                                   | pgwbandedtorches-1.12.2-0.9.20200801.jar             | None                                     |     | LCHIJA | pickletweaks                      | 2.1.3                                                          | PickleTweaks-1.12.2-2.1.3.jar                        | None                                     |     | LCHIJA | playerskins                       | 1.0.4                                                          | playerskin-1.12.2-1.0.5.jar                          | None                                     |     | LCHIJA | portablecraftingtable             | 1.1.4                                                          | PortableCraftingTable-1.12.2-1.1.4.jar               | None                                     |     | LCHIJA | portalgun                         | 7.1.0                                                          | PortalGun-1.12.2-7.1.0.jar                           | 4db5c2bd1b556f252a5b8b54b256d381b2a0a6b8 |     | LCHIJA | teslathingies                     | 1.0.15                                                         | powered-thingies-1.12.2-1.0.15.jar                   | d476d1b22b218a10d845928d1665d45fce301b27 |     | LCHIJA | projectred-core                   | 4.9.4.120                                                      | ProjectRed-1.12.2-4.9.4.120-Base.jar                 | None                                     |     | LCHIJA | projectred-integration            | 4.9.4.120                                                      | ProjectRed-1.12.2-4.9.4.120-integration.jar          | None                                     |     | LCHIJA | projectred-transmission           | 4.9.4.120                                                      | ProjectRed-1.12.2-4.9.4.120-integration.jar          | None                                     |     | LCHIJA | randomthings                      | 4.2.7.4                                                        | RandomThings-MC1.12.2-4.2.7.4.jar                    | d72e0dd57935b3e9476212aea0c0df352dd76291 |     | LCHIJA | rbm2                              | RBM2 Pre-Release BetaV0.3.0 For MinecraftV1.12, 1.12.1, 1.12.2 | RBM2V1.0.0.jar                                       | None                                     |     | LCHIJA | redstonearsenal                   | 2.6.6                                                          | RedstoneArsenal-1.12.2-2.6.6.1-universal.jar         | None                                     |     | LCHIJA | rftools                           | 7.73                                                           | rftools-1.12-7.73.jar                                | None                                     |     | LCHIJA | rftoolspower                      | 1.2.0                                                          | rftoolspower-1.12-1.2.0.jar                          | None                                     |     | LCHIJA | sanplayermodel                    | 1.2.2                                                          | SanLib-1.12.2-1.6.3.jar                              | None                                     |     | LCHIJA | playershop                        | 1.0                                                            | SCMowns Player Shop Mod v1.0.0.jar                   | None                                     |     | LCHIJA | secretroomsmod                    | 5.6.4                                                          | secretroomsmod-1.12.2-5.6.4.jar                      | None                                     |     | LCHIJA | simple-rpc                        | 1.0                                                            | simple-rpc-1.12.2-3.1.1.jar                          | None                                     |     | LCHIJA | simplecorn                        | 2.5.12                                                         | SimpleCorn1.12-2.5.12.jar                            | None                                     |     | LCHIJA | lteleporters                      | 1.12.2-3.0.2                                                   | simpleteleporters-1.12.2-3.0.2.jar                   | None                                     |     | LCHIJA | simple_trophies                   | 1.2.2                                                          | simpletrophies-1.2.2.1.jar                           | None                                     |     | LCHIJA | thermaldynamics                   | 2.5.6                                                          | ThermalDynamics-1.12.2-2.5.6.1-universal.jar         | None                                     |     | LCHIJA | simplyjetpacks                    | 1.12.2-2.2.20.0                                                | SimplyJetpacks2-1.12.2-2.2.20.0.jar                  | None                                     |     | LCHIJA | solarflux                         | 12.4.11                                                        | SolarFluxReborn-1.12.2-12.4.11.jar                   | 9f5e2a811a8332a842b34f6967b7db0ac4f24856 |     | LCHIJA | storagedrawers                    | 5.5.3                                                          | StorageDrawers-1.12.2-5.5.3.jar                      | None                                     |     | LCHIJA | storagedrawersextra               | @VERSION@                                                      | StorageDrawersExtras-1.12-3.1.0.jar                  | None                                     |     | LCHIJA | taiga                             | 1.12.2-1.3.3                                                   | taiga-1.12.2-1.3.4.jar                               | None                                     |     | LCHIJA | thermalinnovation                 | 0.3.6                                                          | ThermalInnovation-1.12.2-0.3.6.1-universal.jar       | None                                     |     | LCHIJA | tinkersjei                        | 1.2                                                            | tinkersjei-1.2.jar                                   | None                                     |     | LCHIJA | tp                                | 3.2.34                                                         | tinyprogressions-1.12.2-3.3.34-Release.jar           | None                                     |     | LCHIJA | travelersbackpack                 | 1.0.35                                                         | TravelersBackpack-1.12.2-1.0.35.jar                  | None                                     |     | LCHIJA | treegrowingsimulator              | 0.0.4                                                          | TreeGrowingSimulator2017-1.0.1.jar                   | None                                     |     | LCHIJA | wanionlib                         | 1.12.2-2.91                                                    | WanionLib-1.12.2-2.91.jar                            | None                                     |     | LCHIJA | wft                               | 1.0.4                                                          | WirelessFluidTerminal-1.12.2-1.0.4.jar               | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCHIJA | wit                               | 1.0.2                                                          | WirelessInterfaceTerminal-1.12.2-1.0.2.jar           | 186bc454cd122c9c2f1aa4f95611254bcc543363 |     | LCHIJA | wrcbe                             | 2.3.2                                                          | WR-CBE-1.12.2-2.3.2.33-universal.jar                 | f1850c39b2516232a2108a7bd84d1cb5df93b261 |     | LCHIJA | recipehandler                     | 0.14                                                           | YARCF-0.14(1.12.2).jar                               | None                                     |     | LCHIJA | ladylib                           | 2.6.2                                                          | Ladylib-2.6.2.jar                                    | None                                     |     | LCHIJA | modwinder                         | 1.1                                                            | Ladylib-2.6.2.jar                                    | None                                     |     | LCHIJA | dissolution                       | 0.3.13                                                         | Dissolution-1.12.2-0.3.13r2.jar                      | None                                     |     | LCHIJA | jade                              | 0.1.0                                                          | Jade-0.1.0.jar                                       | None                                     |     | LCHIJA | orelib                            | 3.6.0.1                                                        | OreLib-1.12.2-3.6.0.1.jar                            | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LCHIJA | patchwork                         | 0.2.3.4                                                        | Patchwork-1.12.2-0.2.3.4BETA.jar                     | 7a2128d395ad96ceb9d9030fbd41d035b435753a |     | LCHIJA | teslacorelib_registries           | 1.0.18                                                         | tesla-core-lib-1.12.2-1.0.18.jar                     | None                                     |     | LCHIJA | unidict                           | 1.12.2-3.0.10                                                  | UniDict-1.12.2-3.0.10.jar                            | None                                     |     Loaded coremods (and transformers):  Inventory Tweaks Coremod (InventoryTweaks-1.64+dev.151.jar)   invtweaks.forge.asm.ContainerTransformer MalisisSwitchesPlugin (malisisswitches-1.12.2-5.1.0.jar)    LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   lumien.randomthings.asm.ClassTransformer IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer EngineersDoorsLoadingPlugin (engineers_doors-1.12.2-0.9.1.jar)   nihiltres.engineersdoors.common.asm.EngineersDoorsClassTransformer RandomPatches (randompatches-1.12.2-1.22.1.10.jar)   com.therandomlabs.randompatches.core.RPTransformer Aqua Acrobatics Transformer (AquaAcrobatics-1.15.4.jar)    Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   pl.asie.foamfix.coremod.FoamFixTransformer ForgelinPlugin (Forgelin-1.8.4.jar)    clothesline-hooks (clothesline-hooks-1.12.2-0.0.1.2.jar)   com.jamieswhiteshirt.clothesline.hooks.plugin.ClassTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper MixinLoader (Locks-1.12.2-3.0.0.jar)    OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar)   openmods.core.OpenModsClassTransformer ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   com.mrcrayfish.obfuscate.asm.ObfuscateTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher Plugin (NotEnoughIDs-1.5.4.4.jar)   ru.fewizz.neid.asm.Transformer SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.10.jar)    SecretRoomsMod-Core (secretroomsmod-1.12.2-5.6.4.jar)   com.wynprice.secretroomsmod.core.SecretRoomsTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)        OpenModsLib class transformers: [llama_null_fix:FINISHED],[horse_base_null_fix:FINISHED],[pre_world_render_hook:FINISHED],[player_render_hook:FINISHED],[horse_null_fix:FINISHED]     AE2 Version: stable rv6-stable-7 for Forge 14.23.5.2768     Ender IO: No known problems detected.     Authlib is : /C:/Users/sjm77/curseforge/minecraft/Install/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     !!!You are looking at the diagnostics information, not at the crash.       !!!     !!!Scroll up until you see the line with '---- Minecraft Crash Report ----'!!!     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!     Pulsar/tconstruct loaded Pulses:          - TinkerCommons (Enabled/Forced)         - TinkerWorld (Enabled/Not Forced)         - TinkerTools (Enabled/Not Forced)         - TinkerHarvestTools (Enabled/Forced)         - TinkerMeleeWeapons (Enabled/Forced)         - TinkerRangedWeapons (Enabled/Forced)         - TinkerModifiers (Enabled/Forced)         - TinkerSmeltery (Enabled/Not Forced)         - TinkerGadgets (Enabled/Not Forced)         - TinkerOredict (Enabled/Forced)         - TinkerIntegration (Enabled/Forced)         - TinkerFluids (Enabled/Forced)         - TinkerMaterials (Enabled/Forced)         - TinkerModelRegister (Enabled/Forced)         - chiselIntegration (Enabled/Not Forced)         - chiselsandbitsIntegration (Enabled/Not Forced)         - wailaIntegration (Enabled/Not Forced)     Modpack Information: Modpack: [Croc's Tiny Modpack] Version: [null] by author [null]     AE2 Integration: IC2:OFF, RC:OFF, MFR:OFF, Waila:ON, InvTweaks:ON, JEI:ON, Mekanism:ON, OpenComputers:OFF, THE_ONE_PROBE:OFF, TESLA:OFF, CRAFTTWEAKER:ON     Profiler Position: N/A (disabled)     Player Count: 1 / 8; [EntityPlayerMP['Croc_Mclaren'/692, l='New World', x=-51.50, y=84.00, z=93.50]]     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'fml,forge'
    • Then it is some kind of issue beyond my programming experience - I have no idea
    • thank you so much it fixed the issue  
  • Topics

  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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