mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
NKAI: fix crash for specific map
This commit is contained in:
parent
ccfc6f5716
commit
4c0aae6fbd
@ -156,11 +156,10 @@ void DangerHitMapAnalyzer::calculateTileOwners()
|
||||
CRandomGenerator rng;
|
||||
auto visitablePos = town->visitablePos();
|
||||
|
||||
townHero->pos = visitablePos;
|
||||
townHero->setOwner(ai->playerID); // lets avoid having multiple colors
|
||||
townHero->initHero(rng, static_cast<HeroTypeID>(0));
|
||||
townHero->initObj(rng);
|
||||
townHero->pos = townHero->convertFromVisitablePos(visitablePos);
|
||||
townHero->initObj(rng);
|
||||
|
||||
heroTownMap[townHero] = town;
|
||||
townHeroes[townHero] = HeroRole::MAIN;
|
||||
|
Loading…
Reference in New Issue
Block a user