Add aliases to TellCommand to bring us in line with Vanilla behaviour.

By: EvilSeph <evilseph@gmail.com>
This commit is contained in:
Bukkit/Spigot 2012-11-15 22:28:46 -05:00
parent 9267baab20
commit 3db888ac01

View file

@ -50,6 +50,6 @@ public class TellCommand extends VanillaCommand {
@Override @Override
public boolean matches(String input) { public boolean matches(String input) {
return input.equalsIgnoreCase("tell"); return input.equalsIgnoreCase("tell") || input.equalsIgnoreCase("w") || input.equalsIgnoreCase("msg");
} }
} }