Fixed prediction in Bluespace Lifeline trigger

This commit is contained in:
Vanessa 2025-11-23 13:32:38 -06:00
parent 4009fee358
commit 341f9c118b
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public sealed class DeleteParentOnTriggerSystem : EntitySystem
if (userXform.ParentUid == userXform.GridUid || userXform.ParentUid == userXform.MapUid)
return;
EntityManager.QueueDeleteEntity(userXform.ParentUid);
EntityManager.PredictedQueueDeleteEntity(userXform.ParentUid);
args.Handled = true;
}
}