View Single Post
  #2  
Old 02-19-2014, 05:21 PM
kimura
Hill Giant
 
Join Date: Oct 2011
Posts: 132
Default

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)) {
Reply With Quote