Skip to content

Commit

Permalink
Fix walk command waitableness
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Feb 27, 2015
1 parent 9dd013c commit 63d66e1
Showing 1 changed file with 3 additions and 5 deletions.
Expand Up @@ -195,11 +195,9 @@ public void checkHeld(NavigationEvent e) {

// Check if tally is empty.
if (tally.isEmpty()) {
if (!entry.hasObject("entities") || ((List<dEntity>) entry.getObject("entities")).isEmpty()) {
entry.setFinished(true);
held.remove(i);
i--;
}
entry.setFinished(true);
held.remove(i);
i--;
}
}
}
Expand Down

0 comments on commit 63d66e1

Please sign in to comment.