Skip to content

Commit

Permalink
I fail at coding... By the way, I fixed the Regex last commit....not …
Browse files Browse the repository at this point in the history
…the Raggee...
  • Loading branch information
winsock committed Feb 10, 2015
1 parent 5ee2850 commit 44c4847
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -297,8 +297,10 @@ public void receiveEvent(Event event) {
lastEvent = event;
int skipCount = 0;
for (String s : triggerScript.getCommands()) {
//noinspection StatementWithEmptyBody
for (;skipCount > 0; skipCount--) { continue; }
if (skipCount > 0) {
skipCount--;
continue;
}

String parsedCommand = s;
Pattern reduxPattern = Pattern.compile("\\$redux\\[\\w{1,}\\]");
Expand Down

0 comments on commit 44c4847

Please sign in to comment.