Fix bots not deploying their mcv as a result of the DeployTransform change

This commit is contained in:
ScottNZ
2013-11-30 09:59:22 +13:00
parent e640122d3f
commit aa5ea1a3ce

View File

@@ -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));
}
}