Thanks...I tried that..waiting to see next crash...
also, I think I'm having issues here with the crashing...
bool EntityList::IsMobInZone(Mob *who)
{
auto it = mob_list.find(who->GetID());
if (it != mob_list.end())
return who == it->second;
return false;
}
if(entity_list.IsMobInZone(cur->mob)) {
|