summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-03-06 15:49:33 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-03-06 23:52:09 +0100
commit15c5def69bf5e396da9172c3d70ae62e09792a84 (patch)
treeeea64f02a5b3133a0f3a89c18c93c328b5303d3f /crawl-ref/source/tutorial.cc
parent061ce144084b6c9c2155855b53785c5ad443469d (diff)
downloadcrawl-ref-15c5def69bf5e396da9172c3d70ae62e09792a84.tar.gz
crawl-ref-15c5def69bf5e396da9172c3d70ae62e09792a84.zip
Mention Ctrl-O in the tutorial message for loading a saved game.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 3a89891a5f..081dad0c14 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -3521,7 +3521,7 @@ void learned_something_new(tutorial_event_type seen_what, coord_def gc)
cmd.push_back(CMD_DISPLAY_INVENTORY);
std::vector<std::string> listed;
- if (Tutorial.tutorial_type == TUT_MAGIC_CHAR)
+ if (you.spell_no > 0)
{
listed.push_back("your spells (<w>%?</w>)");
cmd.push_back(CMD_CAST_SPELL);
@@ -3544,9 +3544,11 @@ void learned_something_new(tutorial_event_type seen_what, coord_def gc)
listed.push_back("the message history (<w>%</w>)");
listed.push_back("the character overview screen (<w>%</w>)");
+ listed.push_back("the dungeon overview screen (<w>%</w>)");
text << comma_separated_line(listed.begin(), listed.end()) << ".";
cmd.push_back(CMD_REPLAY_MESSAGES);
cmd.push_back(CMD_RESISTS_SCREEN);
+ cmd.push_back(CMD_DISPLAY_OVERMAP);
text << "\nAlternatively, you can dump all information pertaining to "
"your character into a text file with the <w>%</w> command. "