View Single Post
  #73  
Old 09-14-2005, 03:46 PM
vRandom
Sarnak
 
Join Date: Jun 2005
Posts: 91
Default

only reference i found to "Catching Mob Crash" was in net.cpp around line 419

printf("Catching Mob Crash...\n");

if that helps
vRandom

edit:
could just be there for debugging, its wrapped in an if

#ifdef CATCH_CRASH
try{
entity_list.MobProcess();
}
catch(...){
printf("Catching Mob Crash...\n");
}
#else
entity_list.MobProcess();
#endif

only difference is the message....

Last edited by vRandom; 09-14-2005 at 11:56 PM..
Reply With Quote