diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 46ef2058ad..0e9a03cd5a 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -96,7 +96,9 @@ public abstract class SharedActionsSystem : EntitySystem if (result != null) return true; - Log.Error($"Failed to get action from action entity: {ToPrettyString(uid.Value)}"); + if (logError) + Log.Error($"Failed to get action from action entity: {ToPrettyString(uid.Value)}"); + return false; }