Difference for server/c_object.c from version 1.10 to 1.11


version 1.10 version 1.11
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_c_object_c =   * static char *rcsid_c_object_c =
  *   "$Id: c_object.c,v 1.10 2000/08/07 05:16:34 cvs Exp $";   *   "$Id: c_object.c,v 1.11 2000/10/22 14:27:39 avogl Exp $";
  */   */
 /*  /*
     CrossFire, A Multiplayer game for X-windows      CrossFire, A Multiplayer game for X-windows
Line 281
 
Line 281
  free_object(tmp);   free_object(tmp);
  return;   return;
     }      }
      
       /* startequip items are not allowed to be put into containers: */
       if (pl->type == PLAYER && op->type == CONTAINER &&
    QUERY_FLAG(tmp, FLAG_STARTEQUIP)) {
         new_draw_info(NDI_UNIQUE, 0,pl,"This object cannot be put into containers!");
         return;
       }
      
     if (nrof==0 || nrof>tmp->nrof) nrof=(tmp->nrof?tmp->nrof:1);      if (nrof==0 || nrof>tmp->nrof) nrof=(tmp->nrof?tmp->nrof:1);
     /* Figure out how much weight this object will add to the player */      /* Figure out how much weight this object will add to the player */
     weight = tmp->weight * nrof;      weight = tmp->weight * nrof;


Legend:
line(s) removed in v.1.10 
line(s) changed
 line(s) added in v.1.11

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