Skip to content

Commit

Permalink
maybe fix role matching
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jan 7, 2020
1 parent df629d3 commit dd61581
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -107,7 +107,7 @@ public static boolean matches(String arg) {
}
int comma = arg.indexOf(',');
if (comma == -1) {
return false;
return ArgumentHelper.matchesInteger(arg);
}
String after = arg.substring(comma + 1);
int secondComma = after.indexOf(',');
Expand Down

0 comments on commit dd61581

Please sign in to comment.