| 1328 | } |
| 1329 | |
| 1330 | staticfn boolean |
| 1331 | angry_shk_exists(void) |
| 1332 | { |
| 1333 | struct monst *shkp; |
| 1334 | |
| 1335 | for (shkp = next_shkp(fmon, FALSE); shkp; |
| 1336 | shkp = next_shkp(shkp->nmon, FALSE)) |
| 1337 | if (ANGRY(shkp)) |
| 1338 | return TRUE; |
| 1339 | return FALSE; |
| 1340 | } |
| 1341 | |
| 1342 | /* remove previously applied surcharge from all billed items */ |
| 1343 | staticfn void |
no test coverage detected