1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-11 11:31:52 +02:00

Fixed crash on visiting multi-creature dwellings (1874)

This commit is contained in:
Ivan Savenko 2014-08-19 13:16:25 +03:00
parent 7e05945a6a
commit 69c6a3fa79
2 changed files with 7 additions and 6 deletions

View File

@ -34,13 +34,11 @@ void CGDwelling::initObj()
if (getOwner() != PlayerColor::NEUTRAL)
cb->gameState()->players[getOwner()].dwellings.push_back (this);
}
//putStack(SlotID(0), new CStackInstance(CreatureID::GOLD_GOLEM, 9));
//putStack(SlotID(1), new CStackInstance(CreatureID::DIAMOND_GOLEM, 6));
//putStack(SlotID(0), new CStackInstance(CreatureID::EARTH_ELEMENTAL, 12));
assert(!creatures.empty());
assert(!creatures[0].second.empty());
break;
}
case Obj::REFUGEE_CAMP:
//is handled within newturn func
break;

View File

@ -158,7 +158,9 @@ void CDwellingInstanceConstructor::initTypeData(const JsonNode & input)
availableCreatures[i][j] = VLC->creh->creatures[index];
});
}
assert(!availableCreatures[i].empty());
}
guards = input["guards"];
}
@ -185,10 +187,11 @@ void CDwellingInstanceConstructor::configureObject(CGObjectInstance * object, CR
CGDwelling * dwelling = dynamic_cast<CGDwelling*>(object);
dwelling->creatures.clear();
dwelling->creatures.resize(availableCreatures.size());
dwelling->creatures.reserve(availableCreatures.size());
for (auto & entry : availableCreatures)
{
dwelling->creatures.resize(dwelling->creatures.size() + 1);
for (const CCreature * cre : entry)
dwelling->creatures.back().second.push_back(cre->idNumber);
}