From 1b4ab564fe692923f01e64f03a320e1657fd3300 Mon Sep 17 00:00:00 2001 From: tovl Date: Fri, 9 Aug 2019 23:35:55 +0200 Subject: [PATCH] Fix AI harvester not resuming after chronoshift. --- OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs b/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs index 35107f9694..a57207f912 100644 --- a/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs +++ b/OpenRA.Mods.Common/Traits/BotModules/HarvesterBotModule.cs @@ -109,9 +109,6 @@ namespace OpenRA.Mods.Common.Traits // Find idle harvesters and give them orders: foreach (var h in harvesters) { - if (!h.Value.Harvester.IsEmpty) - continue; - if (!h.Key.IsIdle) { var act = h.Key.CurrentActivity;