mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 20:43:54 +00:00
Fixed CommandContext.matches() always returning true.
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user