Switch the output slots to SlotOutput instead of slot on new machines
This commit is contained in:
parent
72471b9dae
commit
1a2c0d483f
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -26,8 +26,8 @@ public class ContainerImplosionCompressor extends TechRebornContainer{
|
|||
this.addSlotToContainer(new Slot(tilecompressor.inventory, 0, 34, 16));
|
||||
this.addSlotToContainer(new Slot(tilecompressor.inventory, 1, 34, 34));
|
||||
// outputs
|
||||
this.addSlotToContainer(new Slot(tilecompressor.inventory, 2, 86, 25));
|
||||
this.addSlotToContainer(new Slot(tilecompressor.inventory, 3, 104, 25));
|
||||
this.addSlotToContainer(new SlotOutput(tilecompressor.inventory, 2, 86, 25));
|
||||
this.addSlotToContainer(new SlotOutput(tilecompressor.inventory, 3, 104, 25));
|
||||
|
||||
|
||||
int i;
|
||||
|
|
Loading…
Add table
Reference in a new issue