mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-20 02:45:00 +00:00
Fixed CommandContext.matches() always returning true.
This commit is contained in:
parent
68fe0d3438
commit
09447c5f6c
@ -152,7 +152,7 @@ public class CommandContext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean matches(String command) {
|
public boolean matches(String command) {
|
||||||
return command.equalsIgnoreCase(command);
|
return this.command.equalsIgnoreCase(command);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getString(int index) {
|
public String getString(int index) {
|
||||||
|
Loading…
Reference in New Issue
Block a user