Difference for common/treasure.c from version 1.18 to 1.19


version 1.18 version 1.19
Line 1
 
Line 1
   
 /*  /*
  * static char *rcs_treasure_c =   * static char *rcs_treasure_c =
  *   "$Id: treasure.c,v 1.18 2001/07/14 04:04:53 mwedel Exp $";   *   "$Id: treasure.c,v 1.19 2001/10/14 07:57:14 gros Exp $";
  */   */
   
 /*  /*
Line 1132
 
Line 1132
  */   */
   
 void add_abilities(object *op, object *change) {  void add_abilities(object *op, object *change) {
   int i, tmp;    int i,j, tmp;
   if (change->face != blank_face) {    if (change->face != blank_face) {
 #ifdef TREASURE_VERBOSE  #ifdef TREASURE_VERBOSE
     LOG(llevDebug, "FACE: %d\n", change->face->number);      LOG(llevDebug, "FACE: %d\n", change->face->number);
Line 1266
 
Line 1266
       free_string(op->msg);        free_string(op->msg);
     op->msg = add_refcount(change->msg);      op->msg = add_refcount(change->msg);
   }    }
   /* GROS: Added support for script_... in artifact file */    /* GROS: Added support for event_... in artifact file */
   if (change->script_attack) {    for(j=0;j<20;j++)
     if (op->script_attack)    {
       free_string(op->script_attack);      if(change->event_hook[j])
     op->script_attack = add_refcount(change->script_attack);      {
   }          if (op->event_hook[j])
   if (change->script_apply) {          {
     if (op->script_apply)              free_string(op->event_hook[j]);
       free_string(op->script_apply);              free_string(op->event_plugin[j]);
     op->script_apply = add_refcount(change->script_apply);              free_string(op->event_options[j]);
   }          };
   if (change->script_drop) {          op->event_hook[j]    = add_refcount(change->event_hook[j]);
     if (op->script_drop)          op->event_plugin[j]  = add_refcount(change->event_plugin[j]);
       free_string(op->script_drop);          if (change->event_options[j])
     op->script_drop = add_refcount(change->script_drop);              op->event_options[j] = add_refcount(change->event_options[j]);
   }  
   if (change->script_say) {  
     if (op->script_say)  
       free_string(op->script_say);  
     op->script_say = add_refcount(change->script_say);  
   }  
   if (change->script_trigger) {  
     if (op->script_trigger)  
       free_string(op->script_trigger);  
     op->script_trigger = add_refcount(change->script_trigger);  
   }  
   if (change->script_time) {  
     if (op->script_time)  
       free_string(op->script_time);  
     op->script_time = add_refcount(change->script_time);  
   }  
   if (change->script_throw) {  
     if (op->script_throw)  
       free_string(op->script_throw);  
     op->script_throw = add_refcount(change->script_throw);  
   }  
   /* GROS: Added support for script_str... in artifact file */  
   if (change->script_str_attack) {  
     if (op->script_str_attack)  
       free_string(op->script_str_attack);  
     op->script_str_attack = add_refcount(change->script_str_attack);  
   }  
   if (change->script_str_apply) {  
     if (op->script_str_apply)  
       free_string(op->script_str_apply);  
     op->script_str_apply = add_refcount(change->script_str_apply);  
   }  
   if (change->script_str_drop) {  
     if (op->script_str_drop)  
       free_string(op->script_str_drop);  
     op->script_str_drop = add_refcount(change->script_str_drop);  
   }  
   if (change->script_str_say) {  
     if (op->script_str_say)  
       free_string(op->script_str_say);  
     op->script_str_say = add_refcount(change->script_str_say);  
   }  
   if (change->script_str_trigger) {  
     if (op->script_str_trigger)  
       free_string(op->script_str_trigger);  
     op->script_str_trigger = add_refcount(change->script_str_trigger);  
   }  
   if (change->script_str_time) {  
     if (op->script_str_time)  
       free_string(op->script_str_time);  
     op->script_str_time = add_refcount(change->script_str_time);  
   }  
   if (change->script_str_throw) {  
     if (op->script_str_throw)  
       free_string(op->script_str_throw);  
     op->script_str_throw = add_refcount(change->script_str_throw);  
   }    }
     };
 }  }
   
 static int legal_artifact_combination(object *op, artifact *art) {  static int legal_artifact_combination(object *op, artifact *art) {


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

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