Fixed CommandContext.matches() always returning true.

Dieser Commit ist enthalten in:
sk89q 2011-10-09 10:31:15 -07:00
Ursprung 68fe0d3438
Commit 09447c5f6c

Datei anzeigen

@ -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) {