Difference for server/player.c from version 1.33 to 1.34


version 1.33 version 1.34
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_player_c =   * static char *rcsid_player_c =
  *   "$Id: player.c,v 1.33 2001/01/12 07:22:43 cvs Exp $";   *   "$Id: player.c,v 1.34 2001/01/15 07:11:39 cvs Exp $";
  */   */
   
 /*  /*
Line 240
 
Line 240
   int lastdist,tmp;    int lastdist,tmp;
   
   for(ol=first_friendly_object,lastdist=1000;ol!=NULL;ol=ol->next) {    for(ol=first_friendly_object,lastdist=1000;ol!=NULL;ol=ol->next) {
       /* We shoult not find free objects on this friendly list, but it
        * does periodically happen.  Given that, lets deal with it.
        * While unlikely, it is possible the next object on the friendly
        * list is also free, so encapsulate this in a while loop.
        */
       while (QUERY_FLAG(ol->ob, FLAG_FREED)) {
    object *tmp=ol->ob;
   
    /* Can't do much more other than log the fact, because the object
    * itself will have been cleared.
    */
    LOG(llevDebug,"get_nearest_player: Found free object on friendly list\n");
    ol = ol->next;
    remove_friendly_object(tmp);
    if (!ol) return op;
       }
   
     /* Remove special check for player from this.  First, it looks to cause      /* Remove special check for player from this.  First, it looks to cause
      * some crashes (ol->ob->contr not set properly?), but secondly, a more       * some crashes (ol->ob->contr not set properly?), but secondly, a more
      * complicated method of state checking would be needed in any case -       * complicated method of state checking would be needed in any case -
Line 247
 
Line 264
      * skip them over while waiting for confirmation.       * skip them over while waiting for confirmation.
      */       */
     if(!can_detect_enemy(mon,ol->ob)||ol->ob->map!=mon->map)      if(!can_detect_enemy(mon,ol->ob)||ol->ob->map!=mon->map)
 #if 0  
        ||((ol->ob->invisible&&QUERY_FLAG(ol->ob,FLAG_UNDEAD)==QUERY_FLAG(mon,FLAG_UNDEAD))  
    &&!QUERY_FLAG(mon,FLAG_SEE_INVISIBLE))||ol->ob->map!=mon->map)  
 #endif  
       continue;        continue;
     tmp=distance(ol->ob,mon);      tmp=distance(ol->ob,mon);
     if(lastdist>tmp) {      if(lastdist>tmp) {


Legend:
line(s) removed in v.1.33 
line(s) changed
 line(s) added in v.1.34

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:42