mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
Add aliases to TellCommand to bring us in line with Vanilla behaviour.
By: EvilSeph <evilseph@gmail.com>
This commit is contained in:
parent
9267baab20
commit
3db888ac01
1 changed files with 1 additions and 1 deletions
|
@ -50,6 +50,6 @@ public class TellCommand extends VanillaCommand {
|
|||
|
||||
@Override
|
||||
public boolean matches(String input) {
|
||||
return input.equalsIgnoreCase("tell");
|
||||
return input.equalsIgnoreCase("tell") || input.equalsIgnoreCase("w") || input.equalsIgnoreCase("msg");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue