summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ability.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-30 05:16:56 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-03-30 07:06:11 +0100
commit505f426bffe50515efe38c6d75bb71519ae4c89d (patch)
tree729d5ba21c6f9b4fc77f334e1bd3d911d10f0244 /crawl-ref/source/ability.cc
parent583097f1c51e2bf4b04b746a9d9d03f106a8b713 (diff)
downloadcrawl-ref-505f426bffe50515efe38c6d75bb71519ae4c89d.tar.gz
crawl-ref-505f426bffe50515efe38c6d75bb71519ae4c89d.zip
Don't use MSGCH_MULTITURN for recite messages
Since it's a duration rather than a delayed action now. Possibly should be on some other channel than plain, though.
Diffstat (limited to 'crawl-ref/source/ability.cc')
-rw-r--r--crawl-ref/source/ability.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ability.cc b/crawl-ref/source/ability.cc
index abb1ea218c..d867a2c333 100644
--- a/crawl-ref/source/ability.cc
+++ b/crawl-ref/source/ability.cc
@@ -2352,7 +2352,7 @@ static bool _do_ability(const ability_def& abil)
you.attribute[ATTR_RECITE_SEED] = random2(2187); // 3^7
you.attribute[ATTR_RECITE_HP] = you.hp;
you.duration[DUR_RECITE] = 3 * BASELINE_DELAY;
- mprf(MSGCH_PLAIN, "You clear your throat and prepare to recite %s.",
+ mprf("You clear your throat and prepare to recite %s.",
zin_recite_text(you.attribute[ATTR_RECITE_SEED],
prayertype, -1).c_str());
}