version 1.12 | | version 1.13 |
---|
| | |
/* | | /* |
* static char *rcsid_c_range_c = | | * static char *rcsid_c_range_c = |
* "$Id: c_range.c,v 1.12 2005/10/01 17:46:05 ryo_saeba Exp $"; | | * "$Id: c_range.c,v 1.13 2006/01/01 11:22:04 akirschbaum Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
} /* params supplied */ | | } /* params supplied */ |
| | |
/* We get here if cast was given without options or we could not find | | /* We get here if cast was given without options or we could not find |
* the requested spell. List all the spells the player knows (if | | * the requested spell. List all the spells the player knows. |
* spnum = -1) or spells matching params if spnum=-2 | | |
*/ | | */ |
new_draw_info(NDI_UNIQUE, 0,op,"Cast what spell? Choose one of:"); | | new_draw_info(NDI_UNIQUE, 0,op,"Cast what spell? Choose one of:"); |
show_matching_spells(op, params?params:NULL); | | show_matching_spells(op, params); |
return 1; | | return 1; |
} | | } |
| | |