version 1.156 | | version 1.157 |
---|
| | |
/* | | /* |
* static char *rcsid_apply_c = | | * static char *rcsid_apply_c = |
* "$Id: apply.c,v 1.156 2006/01/07 18:56:51 akirschbaum Exp $"; | | * "$Id: apply.c,v 1.157 2006/01/09 19:35:13 cavesomething Exp $"; |
*/ | | */ |
/* | | /* |
CrossFire, A Multiplayer game for X-windows | | CrossFire, A Multiplayer game for X-windows |
| | |
new_draw_info_format (NDI_UNIQUE, 0, op, | | new_draw_info_format (NDI_UNIQUE, 0, op, |
"Type 'bind cast %s", spell->name); | | "Type 'bind cast %s", spell->name); |
new_draw_info (NDI_UNIQUE, 0, op, "to store the spell in a key."); | | new_draw_info (NDI_UNIQUE, 0, op, "to store the spell in a key."); |
| | esrv_add_spells(op->contr, tmp); |
} | | } |
| | |
/** | | /** |
| | |
new_draw_info_format (NDI_UNIQUE|NDI_NAVY, 0, op, | | new_draw_info_format (NDI_UNIQUE|NDI_NAVY, 0, op, |
"You lose knowledge of %s.", spell); | | "You lose knowledge of %s.", spell); |
player_unready_range_ob(op->contr, spob); | | player_unready_range_ob(op->contr, spob); |
| | esrv_remove_spell(op->contr, spob); |
remove_ob(spob); | | remove_ob(spob); |
free_object(spob); | | free_object(spob); |
} | | } |