summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2013-11-28 10:12:47 +0100
committerNeil Moore <neil@s-z.org>2013-11-28 11:16:43 -0500
commit4f4079f8b06625a2b789c739a82de65dbcb7c375 (patch)
treefd547be5e67f19c93dd451910d8896a3609f0a67 /crawl-ref/source/tutorial.cc
parentd9dfa8fc9755fb0a4e8954c7eb94f32fe97b82e0 (diff)
downloadcrawl-ref-4f4079f8b06625a2b789c739a82de65dbcb7c375.tar.gz
crawl-ref-4f4079f8b06625a2b789c739a82de65dbcb7c375.zip
Rename mprnojoin to mpr_nojoin
For consistency with mpr_nocap, mpr_comma_separated_list and friends.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 139acf6957..655d4c05be 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -65,12 +65,12 @@ void tutorial_init_hint(const char* hintstr)
void tutorial_death_message()
{
- mprnojoin("You die...");
- mprnojoin("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);
+ mpr_nojoin("You die...");
+ mpr_nojoin("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);
more();
}