#wizgenesis - generate monster(s); a count prefix will be honored */
| 200 | |
| 201 | /* #wizgenesis - generate monster(s); a count prefix will be honored */ |
| 202 | int |
| 203 | wiz_genesis(void) |
| 204 | { |
| 205 | if (wizard) { |
| 206 | boolean mongen_saved = iflags.debug_mongen; |
| 207 | |
| 208 | iflags.debug_mongen = FALSE; |
| 209 | (void) create_particular(); |
| 210 | iflags.debug_mongen = mongen_saved; |
| 211 | } else |
| 212 | pline(unavailcmd, ecname_from_fn(wiz_genesis)); |
| 213 | return ECMD_OK; |
| 214 | } |
| 215 | |
| 216 | /* #wizwhere command - display dungeon layout */ |
| 217 | int |
nothing calls this directly
no test coverage detected