diff --git a/OpenRA.Mods.Common/Traits/Carryable.cs b/OpenRA.Mods.Common/Traits/Carryable.cs index 39a7a2541e..c1181390e5 100644 --- a/OpenRA.Mods.Common/Traits/Carryable.cs +++ b/OpenRA.Mods.Common/Traits/Carryable.cs @@ -129,6 +129,9 @@ namespace OpenRA.Mods.Common.Traits if (delayPickups.Any(d => d.IsTraitEnabled() && !d.TryLockForPickup(self, carrier))) return LockResponse.Pending; + if (mobile != null && !mobile.CanStayInCell(self.Location)) + return LockResponse.Pending; + if (state != State.Locked) { state = State.Locked;