mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-01-10 17:57:37 +00:00
Fixed sign post flipping
This commit is contained in:
parent
c6843a2c6d
commit
3f58187790
@ -400,7 +400,13 @@ public final class BlockData {
|
||||
break;
|
||||
|
||||
case BlockID.SIGN_POST:
|
||||
return (data + 8) % 16; // broken!
|
||||
switch (direction) {
|
||||
case NORTH_SOUTH:
|
||||
return (16-data) & 0xf;
|
||||
case WEST_EAST:
|
||||
return (8-data) & 0xf;
|
||||
}
|
||||
break;
|
||||
|
||||
case BlockID.LADDER:
|
||||
case BlockID.WALL_SIGN:
|
||||
|
Loading…
Reference in New Issue
Block a user