2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-09-28 19:28:01 +00:00

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

View File

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