This commit is contained in:
The_Fireplace 2015-07-30 17:02:00 -05:00
parent c55603a1f0
commit 706d51a21b
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class ItemChestChanger extends Item
chestContents = new ItemStack[((TileEntityChest) te).getSizeInventory()];
for (int i = 0; i < chestContents.length; i++)
chestContents[i] = ((TileEntityChest) te).getStackInSlot(i);
newchest = IronChestType.makeEntity(IronChestType.IRON.ordinal());
newchest = IronChestType.makeEntity(this.getTargetChestOrdinal(this.type.ordinal()));
}
}