diff --git a/src/main/java/appeng/block/misc/BlockInterface.java b/src/main/java/appeng/block/misc/BlockInterface.java index 52046cff..0ac8a46c 100644 --- a/src/main/java/appeng/block/misc/BlockInterface.java +++ b/src/main/java/appeng/block/misc/BlockInterface.java @@ -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 ); } } - }