Fixed CommandContext.matches() always returning true.

This commit is contained in:
sk89q 2011-10-09 10:31:15 -07:00
parent 68fe0d3438
commit 09447c5f6c

View File

@ -152,7 +152,7 @@ public class CommandContext {
}
public boolean matches(String command) {
return command.equalsIgnoreCase(command);
return this.command.equalsIgnoreCase(command);
}
public String getString(int index) {