| 338 | COMMAND(saycommand, "c"); |
| 339 | |
| 340 | void inputcommand(char *init, char *action, char *prompt, int *nopersist) |
| 341 | { |
| 342 | saycommand(init); |
| 343 | if(action[0]) cmdaction = newstring(action); |
| 344 | if(prompt[0]) cmdprompt = newstring(prompt); |
| 345 | storeinputcommand = cmdaction && !*nopersist; |
| 346 | } |
| 347 | COMMAND(inputcommand, "sssi"); |
| 348 | |
| 349 | SVARFF(mapmsg, |
nothing calls this directly
no test coverage detected