| 2448 | } |
| 2449 | |
| 2450 | const char * |
| 2451 | glow_verb(int count, /* 0 means blind rather than no applicable creatures */ |
| 2452 | boolean ingsfx) |
| 2453 | { |
| 2454 | static char resbuf[20]; |
| 2455 | |
| 2456 | Strcpy(resbuf, glow_verbs[glow_strength(count)]); |
| 2457 | /* ing_suffix() will double the last consonant for all the words |
| 2458 | we're using and none of them should have that, so bypass it */ |
| 2459 | if (ingsfx) |
| 2460 | Strcat(resbuf, "ing"); |
| 2461 | return resbuf; |
| 2462 | } |
| 2463 | |
| 2464 | /* use for warning "glow" for Sting, Orcrist, and Grimtooth */ |
| 2465 | void |
no test coverage detected