From fd33a892cda33bd32a4659885007782abcd700e8 Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Tue, 27 Jan 2026 22:40:26 +0100 Subject: [PATCH] Reduce warnings about +25 As Innersloth documented it in their mod info document, assume it's here to stay, so warn about it less heavily --- src/Impostor.Server/Net/Manager/ClientManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Impostor.Server/Net/Manager/ClientManager.cs b/src/Impostor.Server/Net/Manager/ClientManager.cs index aa477e5..c8b2e15 100644 --- a/src/Impostor.Server/Net/Manager/ClientManager.cs +++ b/src/Impostor.Server/Net/Manager/ClientManager.cs @@ -101,8 +101,8 @@ namespace Impostor.Server.Net.Manager return; } - // Warn when players connect using the +25 flag that disables server authority. The host authority version - // of 2024.6.18 contains various bugs that break the game, so print a message if this mode is in use + // Warn when players connect using the +25 flag that disables server authority. + // This changes game behaviour, so we'd like to know if it's in use. if (clientVersion.HasDisableServerAuthorityFlag) { if (!_compatibilityConfig.AllowHostAuthority) @@ -112,7 +112,7 @@ namespace Impostor.Server.Net.Manager return; } - _logger.LogWarning("Player {Name} connected with server authority disabled, this may cause issues as there are known bugs in this mode. Please mention that this mode is in use when asking for support.", name); + _logger.LogInformation("Player {Name} connected with server authority disabled, please mention that this mode is in use when asking for support.", name); } if (name.Length > 10) -- 2.39.5