Reader and Writer blocks now face the block you're placing it on, not the player, fixes #1451
This commit is contained in:
@@ -73,6 +73,6 @@ public class BlockReader extends BlockCable {
|
||||
@Override
|
||||
@Nullable
|
||||
public Direction getDirection() {
|
||||
return Direction.ANY_FACE_PLAYER;
|
||||
return Direction.ANY;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -94,6 +94,6 @@ public class BlockWriter extends BlockCable {
|
||||
@Override
|
||||
@Nullable
|
||||
public Direction getDirection() {
|
||||
return Direction.ANY_FACE_PLAYER;
|
||||
return Direction.ANY;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user