Fixed bug with accelerator detection.

This commit is contained in:
AlgorithmX2 2014-06-20 02:07:52 -05:00
parent e732304cac
commit 755e87f006

View file

@ -138,7 +138,7 @@ public class TileCraftingTile extends AENetworkTile implements IAEMultiBlock, IP
public boolean isAccelerator()
{
return worldObj.getBlockMetadata( xCoord, yCoord, zCoord ) == 1;
return (worldObj.getBlockMetadata( xCoord, yCoord, zCoord ) & 3) == 1;
}
public boolean isStatus()