Close #417: whois -> find

This commit is contained in:
md_5 2013-06-03 19:49:35 +10:00
parent fd411edddb
commit 45a93c8cfc
2 changed files with 4 additions and 4 deletions

View File

@ -136,7 +136,7 @@ public class BungeeCord extends ProxyServer
getPluginManager().registerCommand( null, new CommandBungee() ); getPluginManager().registerCommand( null, new CommandBungee() );
getPluginManager().registerCommand( null, new CommandPerms() ); getPluginManager().registerCommand( null, new CommandPerms() );
getPluginManager().registerCommand( null, new CommandSend() ); getPluginManager().registerCommand( null, new CommandSend() );
getPluginManager().registerCommand( null, new CommandWhois() ); getPluginManager().registerCommand( null, new CommandFind() );
registerChannel( "BungeeCord" ); registerChannel( "BungeeCord" );
} }

View File

@ -6,12 +6,12 @@ import net.md_5.bungee.api.ProxyServer;
import net.md_5.bungee.api.connection.ProxiedPlayer; import net.md_5.bungee.api.connection.ProxiedPlayer;
import net.md_5.bungee.api.plugin.Command; import net.md_5.bungee.api.plugin.Command;
public class CommandWhois extends Command public class CommandFind extends Command
{ {
public CommandWhois() public CommandFind()
{ {
super( "whois", "bungeecord.command.whois" ); super( "find", "bungeecord.command.find" );
} }
@Override @Override