diff --git a/OpenRA.Mods.Cnc/TiberiumRefineryDockAction.cs b/OpenRA.Mods.Cnc/TiberiumRefineryDockAction.cs index 48832e881a..88832a1e81 100644 --- a/OpenRA.Mods.Cnc/TiberiumRefineryDockAction.cs +++ b/OpenRA.Mods.Cnc/TiberiumRefineryDockAction.cs @@ -74,7 +74,8 @@ namespace OpenRA.Mods.Cnc return; // invisible harvester makes ceiling cat cry - harv.Trait().Visible = true; + if (!harv.IsDead()) + harv.Trait().Visible = true; } public void Selling (Actor self) { CancelDock(self, dockedHarv); }