version 1.56 | | version 1.57 |
---|
| | |
/* | | /* |
* static char *rcsid_gods_c = | | * static char *rcsid_gods_c = |
* "$Id: gods.c,v 1.56 2005/11/01 18:56:37 akirschbaum Exp $"; | | * "$Id: gods.c,v 1.57 2006/01/01 13:03:07 akirschbaum Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
*/ | | */ |
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.", tmp->name); | | "You lose knowledge of %s.", tmp->name); |
| | player_unready_range_ob(op->contr, tmp); |
remove_ob(tmp); | | remove_ob(tmp); |
free_object(tmp); | | free_object(tmp); |
} | | } |
| | |
if (item->type == SPELL) | | if (item->type == SPELL) |
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.", item->name); | | "You lose knowledge of %s.", item->name); |
| | player_unready_range_ob(op->contr, item); |
remove_ob(item); | | remove_ob(item); |
free_object(item); | | free_object(item); |
} | | } |