1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Naming fix

This commit is contained in:
Dydzio 2017-02-18 21:10:59 +01:00 committed by GitHub
parent a4f375d9c0
commit 3326bfc067

View File

@ -1405,14 +1405,14 @@ void VCAI::buildStructure(const CGTownInstance * t)
if (tryBuildAnyStructure(t, std::vector<BuildingID>(extra, extra + ARRAY_COUNT(extra))))
return;
//at the end, try to get and build any extra dwelling upgrades (for example HotA 3rd level dwelling)
std::vector<BuildingID> extraDwellingUpgrades;
//at the end, try to get and build any extra buildings with nonstandard slots (for example HotA 3rd level dwelling)
std::vector<BuildingID> extraBuildings;
for (auto buildingInfo : t->town->buildings)
if (buildingInfo.first > 43)
extraDwellingUpgrades.push_back(buildingInfo.first);
extraBuildings.push_back(buildingInfo.first);
if (tryBuildAnyStructure(t, extraDwellingUpgrades))
if (tryBuildAnyStructure(t, extraBuildings))
return;
}