Skip to content

Commit

Permalink
Small fix for rotating wall signs
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybruess committed Apr 4, 2011
1 parent cdc011e commit 4ed1082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/sk89q/worldedit/tools/BlockDataCyler.java
Expand Up @@ -66,7 +66,7 @@ public boolean act(ServerInterface server, LocalConfiguration config,
} else if (type == BlockID.SIGN_POST) {
data = (data + 1) % 16;
} else if (type == BlockID.WALL_SIGN) {
data = (data + 1) % 4;
if(data == 2) data = 5; else data--;
} else if (type == BlockID.STEP) {
data = (data + 1) % 3;
} else if (type == BlockID.DOUBLE_STEP) {
Expand Down

0 comments on commit 4ed1082

Please sign in to comment.