geforkt von Mirrors/FastAsyncWorldEdit
Small fix for rotating wall signs
Dieser Commit ist enthalten in:
Ursprung
cdc011eb2d
Commit
4ed1082309
@ -66,7 +66,7 @@ public class BlockDataCyler implements BlockTool {
|
|||||||
} else if (type == BlockID.SIGN_POST) {
|
} else if (type == BlockID.SIGN_POST) {
|
||||||
data = (data + 1) % 16;
|
data = (data + 1) % 16;
|
||||||
} else if (type == BlockID.WALL_SIGN) {
|
} else if (type == BlockID.WALL_SIGN) {
|
||||||
data = (data + 1) % 4;
|
if(data == 2) data = 5; else data--;
|
||||||
} else if (type == BlockID.STEP) {
|
} else if (type == BlockID.STEP) {
|
||||||
data = (data + 1) % 3;
|
data = (data + 1) % 3;
|
||||||
} else if (type == BlockID.DOUBLE_STEP) {
|
} else if (type == BlockID.DOUBLE_STEP) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren