mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
Fixed crash on game start when buildings are customized, should finally solve #1444.
This commit is contained in:
parent
84dea676f2
commit
9ee3133077
@ -1347,6 +1347,10 @@ void CGameState::init(StartInfo * si)
|
||||
vti->builtBuildings.insert(BuildingID::DWELL_LVL_2);
|
||||
}
|
||||
|
||||
//#1444 - remove entries that don't have buildings defined (like some unused extra town hall buildings)
|
||||
vstd::erase_if(vti->builtBuildings, [vti](BuildingID bid){
|
||||
return !vti->town->buildings.count(bid) || !vti->town->buildings.at(bid); });
|
||||
|
||||
if (vstd::contains(vti->builtBuildings, BuildingID::SHIPYARD) && vti->shipyardStatus()==IBoatGenerator::TILE_BLOCKED)
|
||||
vti->builtBuildings.erase(BuildingID::SHIPYARD);//if we have harbor without water - erase it (this is H3 behaviour)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user