Oops forgot one more console message

This commit is contained in:
Govindass 2020-10-31 17:12:13 +02:00
parent a60cae72e3
commit 1e85072e34
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class CommandReloadRedis implements CommandExecutor {
} }
plugin.getRm().reload(); plugin.getRm().reload();
//not sending to sender, because this command can only be executed via console //not sending to sender, because this command can only be executed via console
Bukkit.getLogger().info(ChatColor.translateAlternateColorCodes('&', "&2[&aRediSkript&a] &eReloaded via command! Note this command is not stable, it should only be used in urgent cases where you absolutely need to change config details without restarting the server.")); Bukkit.getLogger().info(ChatColor.translateAlternateColorCodes('&', "&eReloaded via command! Note this command is not stable, it should only be used in urgent cases where you absolutely need to change config details without restarting the server."));
return false; return false;
} }