mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2025-01-12 12:25:03 +08:00
Fixed 43 and 44 block data cycling
This commit is contained in:
parent
04dd21d51a
commit
d83fed13fb
@ -78,9 +78,9 @@ private boolean handleCycle(ServerInterface server, LocalConfiguration config,
|
||||
} else if (type == BlockID.WALL_SIGN) {
|
||||
data = ((data + increment) - 2) % 4 + 2;
|
||||
} else if (type == BlockID.STEP) {
|
||||
data = (data + increment) % 3;
|
||||
data = (data + increment) % 4;
|
||||
} else if (type == BlockID.DOUBLE_STEP) {
|
||||
data = (data + increment) % 3;
|
||||
data = (data + increment) % 4;
|
||||
} else if (type == BlockID.FURNACE || type == BlockID.BURNING_FURNACE
|
||||
|| type == BlockID.DISPENSER) {
|
||||
data = (data + increment) % 4 + 2;
|
||||
|
Loading…
Reference in New Issue
Block a user