From dae18c981f672bc758f3ca5e674bd2f971f22991 Mon Sep 17 00:00:00 2001 From: Kara Date: Sat, 23 Sep 2023 03:53:31 -0700 Subject: [PATCH] Fix action containers deleting the wrong actions (#20430) --- Content.Shared/Actions/ActionContainerSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Actions/ActionContainerSystem.cs b/Content.Shared/Actions/ActionContainerSystem.cs index f7446ae1e6..27cd8dcce6 100644 --- a/Content.Shared/Actions/ActionContainerSystem.cs +++ b/Content.Shared/Actions/ActionContainerSystem.cs @@ -176,7 +176,7 @@ public sealed class ActionContainerSystem : EntitySystem { // TODO Actions // log an error or warning here once gibbing code is fixed. - QueueDel(uid); + QueueDel(args.Entity); } } } @@ -211,4 +211,4 @@ public readonly struct ActionRemovedEvent Action = action; Component = component; } -} \ No newline at end of file +} -- 2.51.2