Fix tier1 machines hopper integration
This commit is contained in:
parent
ac322f3e65
commit
4e6b60e8e7
5 changed files with 30 additions and 12 deletions
|
@ -139,7 +139,11 @@ public class TileRecycler extends TilePowerAcceptor implements IWrenchable, IInv
|
|||
// ISidedInventory
|
||||
@Override
|
||||
public int[] getSlotsForFace(final EnumFacing side) {
|
||||
return side == EnumFacing.DOWN ? new int[] { 1 } : new int[] { 0 };
|
||||
if (side.equals(EnumFacing.UP))
|
||||
return new int[] { 0 };
|
||||
else if (side.equals(EnumFacing.DOWN))
|
||||
return new int[] { 1 };
|
||||
return new int[0];
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue