mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
reloadInfo переименован в reloadList
This commit is contained in:
parent
73dfdd1494
commit
40036362f9
2 changed files with 3 additions and 3 deletions
|
@ -113,7 +113,7 @@ protected CommandHandler(LaunchServer server) {
|
|||
//Register service commands
|
||||
registerCommand("reload",new ReloadCommand(server));
|
||||
registerCommand("reloadAll",new ReloadAllCommand(server));
|
||||
registerCommand("reloadInfo",new ReloadInfoCommand(server));
|
||||
registerCommand("reloadList",new ReloadListCommand(server));
|
||||
registerCommand("config", new ConfigCommand(server));
|
||||
registerCommand("configHelp", new ConfigHelpCommand(server));
|
||||
registerCommand("configList", new ConfigListCommand(server));
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
import ru.gravit.launchserver.command.Command;
|
||||
import ru.gravit.utils.helper.LogHelper;
|
||||
|
||||
public class ReloadInfoCommand extends Command {
|
||||
public ReloadInfoCommand(LaunchServer server) {
|
||||
public class ReloadListCommand extends Command {
|
||||
public ReloadListCommand(LaunchServer server) {
|
||||
super(server);
|
||||
}
|
||||
|
Loading…
Reference in a new issue