Fixed bug with accelerator detection.
This commit is contained in:
parent
e732304cac
commit
755e87f006
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue