mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-26 22:57:00 +02:00
Naming fix
This commit is contained in:
parent
a4f375d9c0
commit
3326bfc067
@ -1405,14 +1405,14 @@ void VCAI::buildStructure(const CGTownInstance * t)
|
|||||||
if (tryBuildAnyStructure(t, std::vector<BuildingID>(extra, extra + ARRAY_COUNT(extra))))
|
if (tryBuildAnyStructure(t, std::vector<BuildingID>(extra, extra + ARRAY_COUNT(extra))))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
//at the end, try to get and build any extra dwelling upgrades (for example HotA 3rd level dwelling)
|
//at the end, try to get and build any extra buildings with nonstandard slots (for example HotA 3rd level dwelling)
|
||||||
std::vector<BuildingID> extraDwellingUpgrades;
|
std::vector<BuildingID> extraBuildings;
|
||||||
|
|
||||||
for (auto buildingInfo : t->town->buildings)
|
for (auto buildingInfo : t->town->buildings)
|
||||||
if (buildingInfo.first > 43)
|
if (buildingInfo.first > 43)
|
||||||
extraDwellingUpgrades.push_back(buildingInfo.first);
|
extraBuildings.push_back(buildingInfo.first);
|
||||||
|
|
||||||
if (tryBuildAnyStructure(t, extraDwellingUpgrades))
|
if (tryBuildAnyStructure(t, extraBuildings))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user