diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index ad93d6c998..6490dc3c0a 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))