From 1c693a2c4bbe9924753e5050ac43762a6b5ed30c Mon Sep 17 00:00:00 2001 From: dnqbob Date: Wed, 15 Oct 2025 22:49:12 +0800 Subject: [PATCH] Fix bot MCV not persisting when failed to deploy. --- .../Traits/BotModules/McvExpansionManagerBotModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/BotModules/McvExpansionManagerBotModule.cs b/OpenRA.Mods.Common/Traits/BotModules/McvExpansionManagerBotModule.cs index ff6ce9ee67..fd6ded285c 100644 --- a/OpenRA.Mods.Common/Traits/BotModules/McvExpansionManagerBotModule.cs +++ b/OpenRA.Mods.Common/Traits/BotModules/McvExpansionManagerBotModule.cs @@ -467,7 +467,7 @@ namespace OpenRA.Mods.Common.Traits foreach (var (othermcv, dest) in activeMCVs) { - if (dest == indiceCenter) + if (dest == indiceCenter && othermcv != mcv) attraction -= indiceSideLengthSquare << 1; }