From b4d99eb8a337265d5aa8851383eafc7a6d5b233d Mon Sep 17 00:00:00 2001 From: ORelio Date: Sun, 9 Aug 2020 18:38:24 +0200 Subject: [PATCH] Add color test in debug mode (#1187) --- MinecraftClient/Program.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/MinecraftClient/Program.cs b/MinecraftClient/Program.cs index 20e607fb..78836553 100644 --- a/MinecraftClient/Program.cs +++ b/MinecraftClient/Program.cs @@ -118,6 +118,12 @@ namespace MinecraftClient Console.Title = Settings.ExpandVars(Settings.ConsoleTitle); } + //Test line to troubleshoot invisible colors + if (Settings.DebugMessages) + { + ConsoleIO.WriteLineFormatted("Color test: Your terminal should display [0123456789ABCDEF]: [§00§11§22§33§44§55§66§77§88§99§aA§bB§cC§dD§eE§fF§r]"); + } + //Load cached sessions from disk if necessary if (Settings.SessionCaching == CacheType.Disk) {