Fixed #251 - Grinding spinning wrong direction

This commit is contained in:
Calclavia 2014-02-21 20:56:38 +08:00
parent 15ff0bfc6a
commit 68e7bcef1a

View file

@ -181,7 +181,7 @@ public class TileGrinderWheel extends TileMechanical implements IRotatable
@Override
public boolean inverseRotation(ForgeDirection dir, IMechanical with)
{
return !(dir.ordinal() % 2 == 0);
return !(dir.offsetX > 0 || dir.offsetZ < 0|| dir.offsetY < 0);
}
}