From 4ed10823098ef6dd8e7d66d8a0cd95c2b905d9b9 Mon Sep 17 00:00:00 2001 From: Tony Date: Sun, 3 Apr 2011 20:53:58 -0500 Subject: [PATCH] Small fix for rotating wall signs --- src/com/sk89q/worldedit/tools/BlockDataCyler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/sk89q/worldedit/tools/BlockDataCyler.java b/src/com/sk89q/worldedit/tools/BlockDataCyler.java index f5fadb6d72..35c839f8da 100644 --- a/src/com/sk89q/worldedit/tools/BlockDataCyler.java +++ b/src/com/sk89q/worldedit/tools/BlockDataCyler.java @@ -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) {