summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-behv.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-04-16 20:29:07 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-04-16 22:13:03 +0100
commit465e5464309c0408eca07fb8e9d25b49b0f37f30 (patch)
tree0f76b5d1a18607cf92630fd040e6b4c4dbd81693 /crawl-ref/source/mon-behv.cc
parent995ad2b7e98273f1a064ef6994e7beded2fa43af (diff)
downloadcrawl-ref-465e5464309c0408eca07fb8e9d25b49b0f37f30.tar.gz
crawl-ref-465e5464309c0408eca07fb8e9d25b49b0f37f30.zip
Improve Beogh conversion prompt (#8382)
Diffstat (limited to 'crawl-ref/source/mon-behv.cc')
-rw-r--r--crawl-ref/source/mon-behv.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mon-behv.cc b/crawl-ref/source/mon-behv.cc
index a400ab2bd7..60c5d6c47b 100644
--- a/crawl-ref/source/mon-behv.cc
+++ b/crawl-ref/source/mon-behv.cc
@@ -1611,9 +1611,9 @@ void behaviour_event(monster* mon, mon_event_type event, const actor *src,
{
ASSERT_RANGE(get_talent(ABIL_CONVERT_TO_BEOGH, false).hotkey,
'A', 'z' + 1);
- mprf("(press <white>%s %c</white> to convert to Beogh)",
- command_to_string(CMD_USE_ABILITY).c_str(),
- get_talent(ABIL_CONVERT_TO_BEOGH, false).hotkey);
+ mprf("(press <w>%c</w> on the <w>%s</w>bility menu to convert to Beogh)",
+ get_talent(ABIL_CONVERT_TO_BEOGH, false).hotkey,
+ command_to_string(CMD_USE_ABILITY).c_str());
you.attribute[ATTR_SEEN_BEOGH] = 1;
}
}