Difference for server/move.c from version 1.19 to 1.20


version 1.19 version 1.20
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_move_c =   * static char *rcsid_move_c =
  *    "$Id: move.c,v 1.19 2002/04/21 05:23:20 mwedel Exp $";   *    "$Id: move.c,v 1.20 2002/08/22 06:49:04 mwedel Exp $";
  */   */
   
 /*  /*
Line 75
 
Line 75
   
     if (op->will_apply&4 ) {      if (op->will_apply&4 ) {
  tmp_ob=get_map_ob(op->map,op->x+freearr_x[dir],op->y+freearr_y[dir]);   tmp_ob=get_map_ob(op->map,op->x+freearr_x[dir],op->y+freearr_y[dir]);
  while(tmp_ob->above != NULL) {   while(tmp_ob != NULL) {
      if (tmp_ob->type == EARTHWALL) {       if (tmp_ob->type == EARTHWALL) {
  hit_player(tmp_ob,5,op,AT_PHYSICAL); /* Tear down the earthwall */   hit_player(tmp_ob,5,op,AT_PHYSICAL); /* Tear down the earthwall */
  return 0;   return 0;
Line 86
 
Line 86
     if (op->will_apply&8 ) {      if (op->will_apply&8 ) {
  tmp_ob=get_map_ob(op->map,op->x+freearr_x[dir],op->y+freearr_y[dir]);   tmp_ob=get_map_ob(op->map,op->x+freearr_x[dir],op->y+freearr_y[dir]);
  while(tmp_ob->above != NULL) {   while(tmp_ob->above != NULL) {
      if (tmp_ob->type == DOOR) {       if (tmp_ob == DOOR) {
  hit_player(tmp_ob,9998,op,AT_PHYSICAL); /* Tear down the earthwall */   hit_player(tmp_ob,9998,op,AT_PHYSICAL); /* Tear down the earthwall */
  return 0;   return 0;
      }       }


Legend:
line(s) removed in v.1.19 
line(s) changed
 line(s) added in v.1.20

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