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 d31ca9e797
commit 9421e618b9

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