Added upgrade slots to AssemblingMachine

This commit is contained in:
Gig 2015-05-12 16:05:15 +01:00
parent 13957467a1
commit bf49bd2136
2 changed files with 6 additions and 1 deletions

View file

@ -34,6 +34,11 @@ public class ContainerAssemblingMachine extends TechRebornContainer {
this.addSlotToContainer(new SlotOutput(tileAssemblingMachine.inventory, 2,116, 35));
// power
this.addSlotToContainer(new Slot(tileAssemblingMachine.inventory, 3, 56, 53));
// upgrades
this.addSlotToContainer(new Slot(tileAssemblingMachine.inventory, 4, 152, 8));
this.addSlotToContainer(new Slot(tileAssemblingMachine.inventory, 5, 152, 26));
this.addSlotToContainer(new Slot(tileAssemblingMachine.inventory, 6, 152, 44));
this.addSlotToContainer(new Slot(tileAssemblingMachine.inventory, 7, 152, 62));
int i;