Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-24 18:10:08 +01: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.
Dieser Commit ist enthalten in:
Ursprung
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;
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren