create some or all remaining erinyes around the player */
| 2602 | |
| 2603 | /* create some or all remaining erinyes around the player */ |
| 2604 | void |
| 2605 | summon_furies(int limit) /* number to create, or 0 to create until extinct */ |
| 2606 | { |
| 2607 | int i = 0; |
| 2608 | while (mk_gen_ok(PM_ERINYS, G_GONE, 0U) && (i < limit || !limit)) { |
| 2609 | makemon(&mons[PM_ERINYS], u.ux, u.uy, MM_ADJACENTOK | MM_NOWAIT); |
| 2610 | i++; |
| 2611 | } |
| 2612 | } |
| 2613 | |
| 2614 | /*makemon.c*/ |
no test coverage detected