Removed fake output slot from rolling machine closes #259
This commit is contained in:
parent
322cc072a8
commit
a499cf2b09
1 changed files with 2 additions and 8 deletions
|
@ -16,8 +16,7 @@ public class ContainerRollingMachine extends RebornContainer {
|
||||||
EntityPlayer player;
|
EntityPlayer player;
|
||||||
TileRollingMachine tile;
|
TileRollingMachine tile;
|
||||||
|
|
||||||
public ContainerRollingMachine(TileRollingMachine tileRollingmachine,
|
public ContainerRollingMachine(TileRollingMachine tileRollingmachine, EntityPlayer player) {
|
||||||
EntityPlayer player) {
|
|
||||||
tile = tileRollingmachine;
|
tile = tileRollingmachine;
|
||||||
this.player = player;
|
this.player = player;
|
||||||
|
|
||||||
|
@ -30,12 +29,7 @@ public class ContainerRollingMachine extends RebornContainer {
|
||||||
}
|
}
|
||||||
|
|
||||||
// output
|
// output
|
||||||
this.addSlotToContainer(new SlotOutput(tileRollingmachine.inventory, 0,
|
this.addSlotToContainer(new SlotOutput(tileRollingmachine.inventory, 0, 124, 35));
|
||||||
124, 35));
|
|
||||||
|
|
||||||
// fakeOutput
|
|
||||||
this.addSlotToContainer(new SlotFake(tileRollingmachine.inventory, 1,
|
|
||||||
124, 10, false, false, 1));
|
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue