Polish console chat visibility implementation

Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/159bd460-7950-4afe-9e69-4892220665e1

Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-05-04 11:36:01 +00:00 committed by GitHub
parent 7bf342baab
commit 1a1caec30a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 12 additions and 9 deletions

View file

@ -72,7 +72,7 @@ namespace MinecraftClient.Logger
{
if (ShouldDisplay(FilterChannel.Chat, msg))
{
ConsoleIO.WriteChatLineFormatted(msg);
ConsoleIO.WriteChatLineIfVisible(msg);
Save(msg);
}
else Debug("[Logger] One Chat message filtered: " + msg);

View file

@ -81,7 +81,7 @@ namespace MinecraftClient.Logger
{
if (ShouldDisplay(FilterChannel.Chat, msg))
{
ConsoleIO.WriteChatLineFormatted(msg);
ConsoleIO.WriteChatLineIfVisible(msg);
}
else Debug("[Logger] One Chat message filtered: " + msg);
}