diff --git a/OpenRA.Mods.Common/Activities/GenericDockSequence.cs b/OpenRA.Mods.Common/Activities/GenericDockSequence.cs index 7742a0b83e..7084e38e18 100644 --- a/OpenRA.Mods.Common/Activities/GenericDockSequence.cs +++ b/OpenRA.Mods.Common/Activities/GenericDockSequence.cs @@ -202,7 +202,7 @@ namespace OpenRA.Mods.Common.Activities foreach (var nd in notifyDockClients) nd.Undocked(self, DockHostActor); - if (DockHostActor.IsInWorld && !DockHostActor.IsDead) + if (!DockHostActor.IsDead) foreach (var nd in notifyDockHosts) nd.Undocked(DockHostActor, self); }