Added Rotatable Blocks integration.

This commit is contained in:
AlgorithmX2
2014-04-03 23:12:35 -05:00
parent 26b1a2abf9
commit 27f374eb04
12 changed files with 176 additions and 44 deletions
+3 -3
View File
@@ -37,11 +37,11 @@ public class BlockInterface extends AEBaseBlock
}
@Override
protected void customRotateBlock(IOrientable rotateable, ForgeDirection axis)
protected void customRotateBlock(IOrientable rotatable, ForgeDirection axis)
{
if ( rotateable instanceof TileInterface )
if ( rotatable instanceof TileInterface )
{
((TileInterface) rotateable).setSide( axis );
((TileInterface) rotatable).setSide( axis );
}
}