diff --git a/AI/VCAI/Goals.cpp b/AI/VCAI/Goals.cpp index 971b59618..2461b2afc 100644 --- a/AI/VCAI/Goals.cpp +++ b/AI/VCAI/Goals.cpp @@ -87,7 +87,7 @@ std::string Goals::AbstractGoal::name() const //TODO: virtualize default: return boost::lexical_cast(goalType); } - if (hero.h) + if (hero.get(true)) //FIXME: used to crash when we lost hero and failed goal desc += " (" + hero->name + ")"; return desc; }