From 68fd98785613dd5c1c871f0531a2d62c1f04911e Mon Sep 17 00:00:00 2001 From: dnqbob Date: Sun, 2 Nov 2025 02:54:39 +0000 Subject: [PATCH] Autocarryall put down unit if destination is cancelled when picking up --- OpenRA.Mods.Common/Traits/AutoCarryall.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenRA.Mods.Common/Traits/AutoCarryall.cs b/OpenRA.Mods.Common/Traits/AutoCarryall.cs index 6449f5bb72..b64fe60edc 100644 --- a/OpenRA.Mods.Common/Traits/AutoCarryall.cs +++ b/OpenRA.Mods.Common/Traits/AutoCarryall.cs @@ -192,8 +192,7 @@ namespace OpenRA.Mods.Common.Traits return true; var dropRange = carryall.Info.DropRange; - QueueChild(new DeliverUnit(self, Target.FromCell(self.World, carryable.Destination ?? self.Location), dropRange, carryall.Info.TargetLineColor)); - + self.QueueActivity(true, new DeliverUnit(self, Target.FromCell(self.World, carryable.Destination ?? self.Location), dropRange, carryall.Info.TargetLineColor)); return true; } }