summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-26 16:39:58 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-26 16:42:10 +0100
commit82cd71c6fd0e33dfaca35da984351228e1b6f9b4 (patch)
tree7691a3f0e87e8ef0bfdef540ebcad14eadf332c4 /crawl-ref/source/tutorial.cc
parenta6f8ba18ae2fb325e862c02f0443d435e8a07b45 (diff)
downloadcrawl-ref-82cd71c6fd0e33dfaca35da984351228e1b6f9b4.tar.gz
crawl-ref-82cd71c6fd0e33dfaca35da984351228e1b6f9b4.zip
Fix tutorial message for monster descriptions without stats/resistances.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 4963b10519..0fba0fa4d8 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -3389,7 +3389,11 @@ void learned_something_new(tutorial_event_type seen_what, coord_def gc)
}
case TUT_SPELL_HUNGER:
text << "The spell you just cast made you hungrier; you can see how "
- "hungry spells make you by entering <w>%\?!</w> or <w>%I</w>. "
+ "hungry spells make you by "
+#ifdef USE_TILE
+ "examining your spells in the spell display, or by "
+#endif
+ "entering <w>%\?!</w> or <w>%I</w>. "
"The amount of nutrition consumed increases with the level of "
"the spell and decreases depending on your intelligence stat "
"and your Spellcasting skill. If both of these are high "
@@ -4940,7 +4944,7 @@ void tutorial_describe_monster(const monsters *mons, bool has_stat_desc)
if (!dangerous && !has_stat_desc)
{
ostr << "\nThis monster doesn't appear to have any resistances or "
- "susceptibilities. It cannot fly and is of average speed.\n"
+ "susceptibilities. It cannot fly and is of average speed. "
"Examining other, possibly more high-level monsters can give "
"important clues as to how to deal with them.";
}