Difference for socket/info.c from version 1.5 to 1.6


version 1.5 version 1.6
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_sock_info_c =   * static char *rcsid_sock_info_c =
  *   "$Id: info.c,v 1.5 2001/08/08 14:40:50 avogl Exp $";   *   "$Id: info.c,v 1.6 2001/09/27 19:37:39 garbled Exp $";
  */   */
   
 /*  /*
Line 217
 
Line 217
     new_draw_info(flags, pri, pl, buf);      new_draw_info(flags, pri, pl, buf);
 }  }
   
   /*
    * write to everyone on the map *except* op.  This is useful for emotions.
    */
   
   void new_info_map_except(int color, mapstruct *map, object *op, char *str) {
       player *pl;
   
       for(pl = first_player; pl != NULL; pl = pl->next)
    if(pl->ob != NULL && pl->ob->map == map && pl->ob != op) {
        new_draw_info(color, 0, pl->ob, str);
    }
   }
   
   /*
    * write to everyone on the map except op1 and op2
    */
   
   void new_info_map_except2(int color, mapstruct *map, object *op1, object *op2,
      char *str) {
       player *pl;
   
       for(pl = first_player; pl != NULL; pl = pl->next)
    if(pl->ob != NULL && pl->ob->map == map
       && pl->ob != op1 && pl->ob != op2) {
        new_draw_info(color, 0, pl->ob, str);
    }
   }
   
   /*
    * write to everyone on the current map
    */
   
 void new_info_map(int color, mapstruct *map, char *str) {  void new_info_map(int color, mapstruct *map, char *str) {
     player *pl;      player *pl;
   


Legend:
line(s) removed in v.1.5 
line(s) changed
 line(s) added in v.1.6

File made using version 1.98 of cvs2html by leaf at 2011-07-21 19:34