mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-24 10:17:39 +00:00
Fix trapdoor rotation
This commit is contained in:
parent
cc859880aa
commit
e62015c0b8
@ -227,7 +227,7 @@ public final class BlockData {
|
|||||||
int open = data & 0x4;
|
int open = data & 0x4;
|
||||||
int withoutOpen = data ^ 0x4;
|
int withoutOpen = data ^ 0x4;
|
||||||
switch (withoutOpen) {
|
switch (withoutOpen) {
|
||||||
case 3: return 9 | open;
|
case 3: return 0 | open;
|
||||||
case 2: return 1 | open;
|
case 2: return 1 | open;
|
||||||
case 0: return 2 | open;
|
case 0: return 2 | open;
|
||||||
case 1: return 3 | open;
|
case 1: return 3 | open;
|
||||||
|
Loading…
Reference in New Issue
Block a user