Fixes wrong command info messages for #358

This commit is contained in:
Rsl1122 2017-10-24 12:22:33 +03:00
parent 510d8d219a
commit 70057c1105
2 changed files with 5 additions and 2 deletions

View File

@ -33,7 +33,7 @@ public class ListServersCommand extends SubCommand {
super("servers, serverlist, listservers, sl",
CommandType.CONSOLE,
Permissions.MANAGE.getPermission(),
Locale.get(Msg.CMD_USG_RELOAD).toString());
"List servers in the network");
this.plugin = plugin;
}

View File

@ -25,7 +25,10 @@ public class NetworkCommand extends SubCommand {
* Class Constructor.
*/
public NetworkCommand(Plan plugin) {
super("network, n, netw", CommandType.CONSOLE, Permissions.ANALYZE.getPermission(), Locale.get(Msg.CMD_USG_LIST).toString(), "");
super("network, n, netw",
CommandType.CONSOLE,
Permissions.ANALYZE.getPermission(),
"Get the link to the network page");
this.plugin = plugin;
}