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))