Guest User

Untitled

a guest
Oct 3rd, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. public class TileEntityDuelField extends TileEntity
  2. {
  3. private DuelFieldInventory duelFieldInv = this.getCapability(DuelFieldInventoryCapability.CAPABILITY, null);
  4. private ItemStack[] inventory = duelFieldInv.getTheInventory().getStacks();
  5.  
  6. public void readFromNBT(NBTTagCompound compound)
  7. {
  8. super.readFromNBT(compound);
  9.  
  10. DuelFieldInventory duelFieldInv = this.getCapability(DuelFieldInventoryCapability.CAPABILITY, null);
  11. duelFieldInv.readData(compound);
  12. }
  13.  
  14. public NBTTagCompound writeToNBT(NBTTagCompound compound)
  15. {
  16. super.writeToNBT(compound);
  17. DuelFieldInventory duelFieldInv = this.getCapability(DuelFieldInventoryCapability.CAPABILITY, null);
  18. duelFieldInv.writeData();
  19.  
  20. return compound;
  21. }
  22.  
  23. public ItemStack getStackInSlot(int index)
  24. {
  25. return duelFieldInv.getTheInventory().getStackInSlot(index);
  26. }
  27.  
  28. public ItemStack getStackInSlotOnClosing(int par1)
  29. {
  30. if (inventory[par1] != null)
  31. {
  32. ItemStack itemstack = inventory[par1];
  33. inventory[par1] = null;
  34. return itemstack;
  35. } else
  36. {
  37. return null;
  38. }
  39. }
  40. }
Add Comment
Please, Sign In to add comment