| 26 | staticfn void list_migrating_mons(d_level *); |
| 27 | |
| 28 | DISABLE_WARNING_FORMAT_NONLITERAL |
| 29 | |
| 30 | /* #wizwish command - wish for something */ |
| 31 | int |
| 32 | wiz_wish(void) /* Unlimited wishes for debug mode by Paul Polderman */ |
| 33 | { |
| 34 | if (wizard) { |
| 35 | boolean save_verbose = flags.verbose; |
| 36 | |
| 37 | flags.verbose = FALSE; |
| 38 | makewish(); |
| 39 | flags.verbose = save_verbose; |
| 40 | encumber_msg(); |
| 41 | } else |
| 42 | pline(unavailcmd, ecname_from_fn(wiz_wish)); |
| 43 | return ECMD_OK; |
| 44 | } |
| 45 | |
| 46 | DISABLE_WARNING_FORMAT_NONLITERAL |
| 47 |
nothing calls this directly
no test coverage detected