mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 10:57:11 +00:00
Made hay blocks rotate like logs.
They're textured like them, too, so it fits. Also, they no longer violate the "flip twice equals rotate twice" conditions.
This commit is contained in:
parent
696a2819a7
commit
7dca4d15ef
@ -169,6 +169,7 @@ public final class BlockData {
|
||||
}
|
||||
break;
|
||||
|
||||
case BlockID.HAY_BLOCK:
|
||||
case BlockID.LOG:
|
||||
if (data >= 4 && data <= 11) data ^= 0xc;
|
||||
break;
|
||||
@ -224,11 +225,6 @@ public final class BlockData {
|
||||
case BlockID.ANVIL:
|
||||
return data ^ 0x1;
|
||||
|
||||
case BlockID.HAY_BLOCK:
|
||||
if (data == 4) return 8;
|
||||
else if (data == 8) return 4;
|
||||
else return 0; // sanitize extraneous data values since hay blocks are weird
|
||||
|
||||
case BlockID.BED:
|
||||
return data & ~0x3 | (data + 1) & 0x3;
|
||||
|
||||
@ -388,6 +384,7 @@ public final class BlockData {
|
||||
}
|
||||
break;
|
||||
|
||||
case BlockID.HAY_BLOCK:
|
||||
case BlockID.LOG:
|
||||
if (data >= 4 && data <= 11) data ^= 0xc;
|
||||
break;
|
||||
@ -442,11 +439,6 @@ public final class BlockData {
|
||||
case BlockID.ANVIL:
|
||||
return data ^ 0x1;
|
||||
|
||||
case BlockID.HAY_BLOCK:
|
||||
if (data == 4) return 8;
|
||||
else if (data == 8) return 4;
|
||||
else return 0;
|
||||
|
||||
case BlockID.BED:
|
||||
return data & ~0x3 | (data - 1) & 0x3;
|
||||
|
||||
|
@ -34,9 +34,6 @@ public class BlockDataTest {
|
||||
@Test
|
||||
public void testRotateFlip() {
|
||||
for (int type = 0; type < 256; ++type) {
|
||||
if (type == BlockID.HAY_BLOCK) {
|
||||
continue; // not monotonous
|
||||
}
|
||||
for (int data = 0; data < 16; ++data) {
|
||||
final String message = type + "/" + data;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user