Fixed bug with mixer checking if it was blocked from working.

This commit is contained in:
Maxwolf Goodliffe 2014-06-04 00:11:48 -07:00
parent 71c6f9f83e
commit 96499a7c0d

View file

@ -97,7 +97,7 @@ public class TileMixer extends TileMechanical implements IInventory
*/
public boolean canWork()
{
return mechanicalNode.getAngularVelocity() != 0 && areaBlockedFromMoving;
return mechanicalNode.getAngularVelocity() != 0 && !areaBlockedFromMoving;
}
public void doWork()