diff --git a/MinecraftClient/ChatBots/AutoRelog.cs b/MinecraftClient/ChatBots/AutoRelog.cs index 9622a50b..12a45d34 100644 --- a/MinecraftClient/ChatBots/AutoRelog.cs +++ b/MinecraftClient/ChatBots/AutoRelog.cs @@ -42,7 +42,8 @@ namespace MinecraftClient.ChatBots for (int i = 0; i < dictionary.Length; i++) { - LogToConsole(" Loaded message: " + dictionary[i]); + if (Settings.DebugMessages) + LogToConsole(" Loaded message: " + dictionary[i]); dictionary[i] = dictionary[i].ToLower(); } }