Fix SharedActionSystem spamming errors (#38358)

This commit is contained in:
slarticodefast 2025-06-17 07:18:13 +02:00 committed by Quanteey
parent 43dead4774
commit c43119296e
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ public abstract class SharedActionsSystem : EntitySystem
/// </summary>
public Entity<ActionComponent>? GetAction(Entity<ActionComponent?>? 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))