From 1e85072e34d1bc67e1984a58b69b4cdd0ece05dd Mon Sep 17 00:00:00 2001 From: Govindass Date: Sat, 31 Oct 2020 17:12:13 +0200 Subject: [PATCH] Oops forgot one more console message --- .../net/limework/rediskript/commands/CommandReloadRedis.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/limework/rediskript/commands/CommandReloadRedis.java b/src/main/java/net/limework/rediskript/commands/CommandReloadRedis.java index 1dfecd8..fd9e810 100644 --- a/src/main/java/net/limework/rediskript/commands/CommandReloadRedis.java +++ b/src/main/java/net/limework/rediskript/commands/CommandReloadRedis.java @@ -23,7 +23,7 @@ public class CommandReloadRedis implements CommandExecutor { } plugin.getRm().reload(); //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; }