From b6044340916698b3209c68229c8ff3c92be11079 Mon Sep 17 00:00:00 2001 From: Tux Date: Fri, 24 Jan 2014 15:40:45 -0500 Subject: [PATCH] Add aliases. Meant to be temporary until I can find a good workaround the cmd-list module in newer Bungee builds. --- .../minecraft/redisbungee/RedisBungeeCommands.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeCommands.java b/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeCommands.java index ae7037d..6658b08 100644 --- a/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeCommands.java +++ b/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeCommands.java @@ -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