Fix tier1 machines hopper integration
This commit is contained in:
parent
ac322f3e65
commit
4e6b60e8e7
5 changed files with 30 additions and 12 deletions
|
@ -149,7 +149,11 @@ implements IWrenchable, IInventoryProvider, IRecipeCrafterProvider, IContainerPr
|
|||
|
||||
@Override
|
||||
public int[] getSlotsForFace(final EnumFacing side) {
|
||||
return new int[] { 0, 1 };
|
||||
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