Switch the output slots to SlotOutput instead of slot on new machines

This commit is contained in:
Gig 2015-04-28 20:44:11 +01:00
parent 72471b9dae
commit 1a2c0d483f
2 changed files with 6 additions and 6 deletions

View file

@ -26,10 +26,10 @@ public class ContainerGrinder extends TechRebornContainer{
// outputs
this.addSlotToContainer(new Slot(tileGrinder.inventory, 2, 73, 35));
this.addSlotToContainer(new Slot(tileGrinder.inventory, 3, 91, 35));
this.addSlotToContainer(new Slot(tileGrinder.inventory, 4, 109, 35));
this.addSlotToContainer(new Slot(tileGrinder.inventory, 5, 127, 35));
this.addSlotToContainer(new SlotOutput(tileGrinder.inventory, 2, 73, 35));
this.addSlotToContainer(new SlotOutput(tileGrinder.inventory, 3, 91, 35));
this.addSlotToContainer(new SlotOutput(tileGrinder.inventory, 4, 109, 35));
this.addSlotToContainer(new SlotOutput(tileGrinder.inventory, 5, 127, 35));
int i;