From 177d2953467d1bd43b09cbbd67ab6ef6ddbe4d5f Mon Sep 17 00:00:00 2001 From: rhailrake <49613070+rhailrake@users.noreply.github.com> Date: Wed, 31 Jan 2024 20:13:35 +0600 Subject: [PATCH] - fix: ERROR spam. --- Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs b/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs index c57d477bd2..c3a107ec5e 100644 --- a/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs +++ b/Content.Shared/MouseRotator/SharedMouseRotatorSystem.cs @@ -65,7 +65,7 @@ public abstract class SharedMouseRotatorSystem : EntitySystem if (args.SenderSession.AttachedEntity is not { } ent || !TryComp(ent, out var rotator) || !rotator.Simple4DirMode) { - Log.Error($"User {args.SenderSession.Name} ({args.SenderSession.UserId}) tried setting 4-dir rotation directly without a valid mouse rotator component attached!"); + Log.Warning($"User {args.SenderSession.Name} ({args.SenderSession.UserId}) tried setting 4-dir rotation directly without a valid mouse rotator component attached!"); return; }