diff --git a/IronChests2/common/cpw/mods/ironchest/TileEntityIronChest.java b/IronChests2/common/cpw/mods/ironchest/TileEntityIronChest.java index 8fb485f..09df7ec 100644 --- a/IronChests2/common/cpw/mods/ironchest/TileEntityIronChest.java +++ b/IronChests2/common/cpw/mods/ironchest/TileEntityIronChest.java @@ -25,6 +25,11 @@ public class TileEntityIronChest extends TileEntity implements IInventory { this.type=type; this.chestContents=new ItemStack[getSizeInventory()]; } + + public ItemStack[] getContents() { + return chestContents; + } + @Override public int getSizeInventory() { return type.size;