Fixed logic error in blocked-cmds for real this time.

Closes WORLDGUARD-3050.
This commit is contained in:
wizjany 2014-04-29 12:01:06 -04:00
parent ff46c2cf54
commit 0dd9729b35

View File

@ -1483,8 +1483,8 @@ public void onPlayerCommandPreprocess(PlayerCommandPreprocessEvent event) {
} }
} }
} else { } else {
// found non-matching part, stop checking // found non-matching part, stop checking this command
break blocked; continue blocked;
} }
} }
} }