Fixed #251 - Grinding spinning wrong direction
This commit is contained in:
parent
15ff0bfc6a
commit
68e7bcef1a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue