From aa5ea1a3cea3e2945df1c754322d609f37461fad Mon Sep 17 00:00:00 2001 From: ScottNZ Date: Sat, 30 Nov 2013 09:59:22 +1300 Subject: [PATCH] Fix bots not deploying their mcv as a result of the DeployTransform change --- OpenRA.Mods.RA/AI/HackyAI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/AI/HackyAI.cs b/OpenRA.Mods.RA/AI/HackyAI.cs index 5c12c0935e..a5e8a46e68 100644 --- a/OpenRA.Mods.RA/AI/HackyAI.cs +++ b/OpenRA.Mods.RA/AI/HackyAI.cs @@ -738,8 +738,8 @@ namespace OpenRA.Mods.RA.AI if (desiredLocation == null) continue; - world.IssueOrder(new Order("Move", mcv, false) { TargetLocation = desiredLocation.Value }); - world.IssueOrder(new Order("DeployTransform", mcv, false)); + world.IssueOrder(new Order("Move", mcv, true) { TargetLocation = desiredLocation.Value }); + world.IssueOrder(new Order("DeployTransform", mcv, true)); } }