Add aliases. Meant to be temporary until I can find a good workaround the cmd-list module in newer Bungee builds.

This commit is contained in:
Tux 2014-01-24 15:40:45 -05:00
parent 522a046192
commit b604434091
1 changed files with 6 additions and 6 deletions

View File

@ -38,7 +38,7 @@ class RedisBungeeCommands {
public static class GlistCommand extends Command {
GlistCommand() {
super("glist", "bungeecord.command.list", "redisbungee");
super("glist", "bungeecord.command.list", "redisbungee", "rglist");
}
@Override
@ -75,7 +75,7 @@ class RedisBungeeCommands {
public static class FindCommand extends Command {
FindCommand() {
super("find", "bungeecord.command.find");
super("find", "bungeecord.command.find", "rfind");
}
@Override
@ -98,7 +98,7 @@ class RedisBungeeCommands {
public static class LastSeenCommand extends Command {
LastSeenCommand() {
super("lastseen", "redisbungee.command.lastseen");
super("lastseen", "redisbungee.command.lastseen", "rlastseen");
}
@Override
@ -127,7 +127,7 @@ class RedisBungeeCommands {
public static class IpCommand extends Command {
IpCommand() {
super("ip", "redisbungee.command.ip", "playerip");
super("ip", "redisbungee.command.ip", "playerip", "rip", "rplayerip");
}
@Override
@ -149,7 +149,7 @@ class RedisBungeeCommands {
public static class SendToAll extends Command {
SendToAll() {
super("sendtoall", "redisbungee.command.sendtoall");
super("sendtoall", "redisbungee.command.sendtoall", "rsendtoall");
}
@Override
@ -168,7 +168,7 @@ class RedisBungeeCommands {
public static class ServerId extends Command {
ServerId() {
super("serverid", "redisbungee.command.serverid");
super("serverid", "redisbungee.command.serverid", "rserverid");
}
@Override