Difference for server/spell_util.c from version 1.91 to 1.92


version 1.91 version 1.92
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_spell_util_c =   * static char *rcsid_spell_util_c =
  *   "$Id: spell_util.c,v 1.91 2005/04/27 21:43:29 ryo_saeba Exp $";   *   "$Id: spell_util.c,v 1.92 2005/07/10 21:12:14 ryo_saeba Exp $";
  */   */
   
   
Line 907
 
Line 907
     }      }
 }  }
   
   int cast_party_spell(object *op, object *caster,int dir,object *spell_ob, char *stringarg)
       {
       int success;
       player *pl;
       object *spell;
   
       if ( !spell_ob->other_arch )
           {
           LOG( llevError, "cast_party_spell: empty other arch\n" );
           return 0;
           }
       spell = arch_to_object( spell_ob->other_arch );
   
       /* Always cast spell on caster */
       success = cast_spell( op, caster, dir, spell, stringarg );
   
       if ( caster->contr->party_number == -1 )
           {
           remove_ob( spell );
           return success;
           }
       for( pl=first_player; pl!=NULL; pl=pl->next )
           if( ( pl->ob->contr->party_number == caster->contr->party_number ) && ( pl->ob->map == caster->map ) )
               {
               cast_spell( pl->ob, caster, pl->ob->facing, spell, stringarg );
               }
       remove_ob( spell );
       return success;
       }
   
 /* This is where the main dispatch when someone casts a spell.  /* This is where the main dispatch when someone casts a spell.
  *   *
  * op is the creature that is owner of the object that is casting the spell -   * op is the creature that is owner of the object that is casting the spell -
Line 1355
 
Line 1385
      success= cast_create_town_portal (op,caster,spell_ob, dir);       success= cast_create_town_portal (op,caster,spell_ob, dir);
      break;       break;
   
       case SP_PARTY_SPELL:
           success = cast_party_spell( op, caster, dir, spell_ob, stringarg );
   
  default:   default:
      LOG(llevError,"cast_spell: Unhandled spell subtype %d\n",       LOG(llevError,"cast_spell: Unhandled spell subtype %d\n",
  spell_ob->subtype);   spell_ob->subtype);


Legend:
line(s) removed in v.1.91 
line(s) changed
 line(s) added in v.1.92

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