summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-28 23:41:06 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-29 01:07:35 +0100
commitdcc0ed19d09e205c10bddb627c27520477f126f0 (patch)
treef9a14537b928c16f535eb21517242db7c180034e /crawl-ref/source/tutorial.cc
parentf6a14d95cd3737dd283c16f87fb9666774fb5aa4 (diff)
downloadcrawl-ref-dcc0ed19d09e205c10bddb627c27520477f126f0.tar.gz
crawl-ref-dcc0ed19d09e205c10bddb627c27520477f126f0.zip
Reverse the order of arguments in mpr_nojoin().
The old one was quite bizarre, inconsistent with mprf(). Only two cases used the default channel (mpr_nojoin() is quite special...), so I did not add an overload with the default.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 1de972c945..5d1bf4bd3a 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -67,11 +67,11 @@ void tutorial_init_hint(const char* hintstr)
void tutorial_death_message()
{
canned_msg(MSG_YOU_DIE);
- mpr_nojoin("In Crawl, death is a sad but common occurrence. "
+ mpr_nojoin(MSGCH_TUTORIAL,
+ "In Crawl, death is a sad but common occurrence. "
"Note that there's usually something you could have done to "
"survive, for example by using some kind of item, running away, "
"resting between fights, or by avoiding combat entirely. "
- "Keep trying, eventually you'll prevail!",
- MSGCH_TUTORIAL);
+ "Keep trying, eventually you'll prevail!");
more();
}