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

This commit is contained in:
EvilSeph 2012-11-15 22:28:46 -05:00
parent fad6c476fe
commit ceab221b8e

View File

@ -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");
}
}