Reader and Writer blocks now face the block you're placing it on, not the player, fixes #1451

This commit is contained in:
raoulvdberge
2017-09-08 12:29:16 +02:00
parent 20d6e540e3
commit 99eb135646
3 changed files with 3 additions and 2 deletions

View File

@@ -73,6 +73,6 @@ public class BlockReader extends BlockCable {
@Override
@Nullable
public Direction getDirection() {
return Direction.ANY_FACE_PLAYER;
return Direction.ANY;
}
}

View File

@@ -94,6 +94,6 @@ public class BlockWriter extends BlockCable {
@Override
@Nullable
public Direction getDirection() {
return Direction.ANY_FACE_PLAYER;
return Direction.ANY;
}
}