From d25046461e336688e554920e353c04aaa5e8c56b Mon Sep 17 00:00:00 2001 From: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Date: Tue, 17 Jun 2025 07:18:13 +0200 Subject: [PATCH] Fix SharedActionSystem spamming errors (#38358) --- Content.Shared/Actions/SharedActionsSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 583bd177dc..a676f570b0 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -108,7 +108,7 @@ public abstract class SharedActionsSystem : EntitySystem /// public Entity? GetAction(Entity? action, bool logError = true) { - if (action is not {} ent || TerminatingOrDeleted(ent)) + if (action is not {} ent || Deleted(ent)) return null; if (!_actionQuery.Resolve(ent, ref ent.Comp, logError))