mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
crash in VCAI::completeGoal() fixed
This commit is contained in:
parent
145df56126
commit
2ee139977f
@ -1415,14 +1415,15 @@ void VCAI::completeGoal (Goals::TSubgoal goal)
|
||||
}
|
||||
else //complete goal for all heroes maybe?
|
||||
{
|
||||
for (auto p : lockedHeroes)
|
||||
vstd::erase_if(lockedHeroes, [goal](std::pair<HeroPtr, Goals::TSubgoal> p)
|
||||
{
|
||||
if (*(p.second) == *goal || p.second->fulfillsMe(goal)) //we could have fulfilled goals of other heroes by chance
|
||||
{
|
||||
logAi->debugStream() << boost::format("%s") % p.second->completeMessage();
|
||||
lockedHeroes.erase (lockedHeroes.find(p.first)); //is it safe?
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user