Few more ice effects

This commit is contained in:
WayofTime 2014-02-02 08:48:11 -05:00
parent 05c86e03bf
commit bdf9760e8a
8 changed files with 292 additions and 7 deletions

View file

@ -90,4 +90,13 @@ public class TEOrientable extends TileEntity implements IOrientable
{
return PacketHandler.getBlockOrientationPacket(this);
}
public boolean isSideRendered(ForgeDirection side)
{
if(side.equals(this.getInputDirection()) || side.equals(this.getOutputDirection()))
{
return true;
}
return false;
}
}