Skip to content

Commit

Permalink
Fix on player animates ANIMATION, for #1142
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Aug 19, 2015
1 parent 7db6d58 commit 8c24352
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -54,7 +54,7 @@ public boolean matches(ScriptContainer scriptContainer, String s) {
}

String ani = CoreUtilities.getXthArg(2, lower);
if (ani.length() > 0 && !ani.equals("in") && !ani.equals(animation)) {
if (ani.length() > 0 && !ani.equals("in") && !ani.equalsIgnoreCase(animation)) {
return false;
}

Expand Down

0 comments on commit 8c24352

Please sign in to comment.