Merge fixes for interface.

This commit is contained in:
Sebastian Hartte 2016-08-26 12:42:51 +02:00
parent c6b9926d7f
commit 210d5d2602
1 changed files with 4 additions and 3 deletions

View File

@ -40,6 +40,7 @@ import appeng.core.sync.GuiBridge;
import appeng.tile.misc.TileInterface;
import appeng.util.Platform;
public class BlockInterface extends AEBaseTileBlock
{
@ -55,7 +56,7 @@ public class BlockInterface extends AEBaseTileBlock
@Override
protected IProperty[] getAEStates()
{
return new IProperty[] { AE_BLOCK_FORWARD, AE_BLOCK_UP, OMNIDIRECTIONAL };
return new IProperty[] { OMNIDIRECTIONAL };
}
@Override
@ -64,7 +65,8 @@ public class BlockInterface extends AEBaseTileBlock
// Determine whether the interface is omni-directional or not
TileInterface te = getTileEntity( world, pos );
boolean omniDirectional = true; // The default
if (te != null) {
if( te != null )
{
omniDirectional = te.isOmniDirectional();
}
@ -106,5 +108,4 @@ public class BlockInterface extends AEBaseTileBlock
( (TileInterface) rotatable ).setSide( axis );
}
}
}