move tile settings to other package, remove unneeded IInventory impls

This commit is contained in:
Raoul Van den Berge
2016-01-31 15:16:41 +01:00
parent dcab5a6819
commit 9d2e6ed16f
24 changed files with 58 additions and 527 deletions

View File

@@ -272,20 +272,18 @@ public class TileSolderer extends TileMachine implements IInventory, ISidedInven
@Override
public int[] getSlotsForFace(EnumFacing side)
{
// On all sides, but not the bottom we can reach the slots
if (side != EnumFacing.DOWN)
{
return new int[]
{
0, 1, 2
};
{
0, 1, 2
};
}
// On the bottom we can only reach the output slot
return new int[]
{
3
};
{
3
};
}
@Override