Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class TileEntityDuelField extends TileEntity
- {
- private DuelFieldInventory duelFieldInv = this.getCapability(DuelFieldInventoryCapability.CAPABILITY, null);
- private ItemStack[] inventory = duelFieldInv.getTheInventory().getStacks();
- public void readFromNBT(NBTTagCompound compound)
- {
- super.readFromNBT(compound);
- DuelFieldInventory duelFieldInv = this.getCapability(DuelFieldInventoryCapability.CAPABILITY, null);
- duelFieldInv.readData(compound);
- }
- public NBTTagCompound writeToNBT(NBTTagCompound compound)
- {
- super.writeToNBT(compound);
- DuelFieldInventory duelFieldInv = this.getCapability(DuelFieldInventoryCapability.CAPABILITY, null);
- duelFieldInv.writeData();
- return compound;
- }
- public ItemStack getStackInSlot(int index)
- {
- return duelFieldInv.getTheInventory().getStackInSlot(index);
- }
- public ItemStack getStackInSlotOnClosing(int par1)
- {
- if (inventory[par1] != null)
- {
- ItemStack itemstack = inventory[par1];
- inventory[par1] = null;
- return itemstack;
- } else
- {
- return null;
- }
- }
- }
Add Comment
Please, Sign In to add comment