mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-25 22:42:04 +02:00
Merge pull request #3179 from vcmi/fix-3173
#3173 - fix trap crash on random hero
This commit is contained in:
@@ -1543,22 +1543,25 @@ std::string CGHeroInstance::getHeroTypeName() const
|
||||
|
||||
void CGHeroInstance::afterAddToMap(CMap * map)
|
||||
{
|
||||
auto existingHero = std::find_if(map->objects.begin(), map->objects.end(), [&](const CGObjectInstance * o) ->bool
|
||||
{
|
||||
return o && (o->ID == Obj::HERO || o->ID == Obj::PRISON) && o->subID == subID && o != this;
|
||||
});
|
||||
|
||||
if(existingHero != map->objects.end())
|
||||
if(ID != Obj::RANDOM_HERO)
|
||||
{
|
||||
if(settings["session"]["editor"].Bool())
|
||||
{
|
||||
logGlobal->warn("Hero is already on the map at %s", (*existingHero)->visitablePos().toString());
|
||||
}
|
||||
else
|
||||
{
|
||||
logGlobal->error("Hero is already on the map at %s", (*existingHero)->visitablePos().toString());
|
||||
auto existingHero = std::find_if(map->objects.begin(), map->objects.end(), [&](const CGObjectInstance * o) ->bool
|
||||
{
|
||||
return o && (o->ID == Obj::HERO || o->ID == Obj::PRISON) && o->subID == subID && o != this;
|
||||
});
|
||||
|
||||
throw std::runtime_error("Hero is already on the map");
|
||||
if(existingHero != map->objects.end())
|
||||
{
|
||||
if(settings["session"]["editor"].Bool())
|
||||
{
|
||||
logGlobal->warn("Hero is already on the map at %s", (*existingHero)->visitablePos().toString());
|
||||
}
|
||||
else
|
||||
{
|
||||
logGlobal->error("Hero is already on the map at %s", (*existingHero)->visitablePos().toString());
|
||||
|
||||
throw std::runtime_error("Hero is already on the map");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user