From 2851d8e8a1eaec6eb505d2a59b181eb9219f022e Mon Sep 17 00:00:00 2001 From: Govindas Date: Fri, 23 Oct 2020 17:50:04 +0300 Subject: [PATCH] Re-word redis reload command information --- src/main/java/net/limework/core/commands/ReloadRedis.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/limework/core/commands/ReloadRedis.java b/src/main/java/net/limework/core/commands/ReloadRedis.java index feea213..263d9d4 100644 --- a/src/main/java/net/limework/core/commands/ReloadRedis.java +++ b/src/main/java/net/limework/core/commands/ReloadRedis.java @@ -23,7 +23,7 @@ public class ReloadRedis 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! Please note that this command is not guaranteed to work correctly, if you face any problem caused by this command, please report it on github.com/Limework/RediSkript/issues")); + 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.")); return false; }