#wizwhere command - display dungeon layout */
| 215 | |
| 216 | /* #wizwhere command - display dungeon layout */ |
| 217 | int |
| 218 | wiz_where(void) |
| 219 | { |
| 220 | if (wizard) |
| 221 | (void) print_dungeon(FALSE, (schar *) 0, (xint16 *) 0); |
| 222 | else |
| 223 | pline(unavailcmd, ecname_from_fn(wiz_where)); |
| 224 | return ECMD_OK; |
| 225 | } |
| 226 | |
| 227 | /* the #wizdetect command - detect secret doors, traps, hidden monsters */ |
| 228 | int |
nothing calls this directly
no test coverage detected