remove another ctor

This commit is contained in:
Chris Forbes
2010-11-23 15:24:45 +13:00
parent 23e6eada26
commit da5830845b
3 changed files with 12 additions and 12 deletions

View File

@@ -475,8 +475,11 @@ namespace OpenRA.Mods.RA
}
else
{
ai.world.IssueOrder(new Order("PlaceBuilding", ai.p.PlayerActor,
location.Value, currentBuilding.Item, false));
ai.world.IssueOrder(new Order("PlaceBuilding", ai.p.PlayerActor, false)
{
TargetLocation = location.Value,
TargetString = currentBuilding.Item
});
}
}
break;