summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/wiz-mon.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-06-01 03:11:45 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-06-01 03:22:37 +0200
commita22731368d237714b92a75b6a3b78591260d5189 (patch)
treeb0f3ea7539d7f392d94c60baa47724ebe920af08 /crawl-ref/source/wiz-mon.cc
parent587b4aa22053531ffac424160d33131309809cd3 (diff)
downloadcrawl-ref-a22731368d237714b92a75b6a3b78591260d5189.tar.gz
crawl-ref-a22731368d237714b92a75b6a3b78591260d5189.zip
"&G harmful" to get rid of non-decorative monsters.
Diffstat (limited to 'crawl-ref/source/wiz-mon.cc')
-rw-r--r--crawl-ref/source/wiz-mon.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/wiz-mon.cc b/crawl-ref/source/wiz-mon.cc
index 47c1116cd6..c83475ba82 100644
--- a/crawl-ref/source/wiz-mon.cc
+++ b/crawl-ref/source/wiz-mon.cc
@@ -734,7 +734,8 @@ void wizard_dismiss_all_monsters(bool force_all)
char buf[1024] = "";
if (!force_all)
{
- mpr("Regex of monsters to dismiss (ENTER for all): ", MSGCH_PROMPT);
+ mpr("What monsters to dismiss (ENTER for all, \"harmful\" or a regex)? ",
+ MSGCH_PROMPT);
bool validline = !cancelable_get_line_autohist(buf, sizeof buf);
if (!validline)