]> git.deb.at Git - rhonda/impostor.git/commitdiff
Reduce warnings about +25
authorminiduikboot <mini@duikbo.at>
Tue, 27 Jan 2026 21:40:26 +0000 (22:40 +0100)
committerminiduikboot <mini@duikbo.at>
Tue, 27 Jan 2026 21:41:42 +0000 (22:41 +0100)
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

index aa477e54b3e50e04ab8c908b95e0bc2feeeafb33..c8b2e15307f63a62fb43c440735dbc98ab30ee67 100644 (file)
@@ -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)