summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-21 18:06:57 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-21 18:06:57 +0100
commit6021bfb4c6ef7c5a7b3ec990f8ef3013c313bf07 (patch)
treede51b62a93677b3c865a1ea51a55aa0481c0aca0 /crawl-ref/source/tutorial.cc
parent4d78825bb2a109a3b1733d8d2913160ad4e67a9b (diff)
downloadcrawl-ref-6021bfb4c6ef7c5a7b3ec990f8ef3013c313bf07.tar.gz
crawl-ref-6021bfb4c6ef7c5a7b3ec990f8ef3013c313bf07.zip
Change tutorial's hardcoded option settings.
* Don't override clear_messages setting anymore. The default is good, but it should be possible for players to override it. * Set show_more to true, otherwise some of the longer tutorial messages are chopped without explanation. * Set small_more to false, because -More- contains additional information in the tutorial, and for new players the small more is completely confusing.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index d139871436..3c2b2cba59 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -119,8 +119,10 @@ void init_tutorial_options()
// Clear possible debug messages before messing
// with messaging options.
mesclr(true);
- Options.clear_messages = true;
- Options.auto_list = true;
+// Options.clear_messages = true;
+ Options.auto_list = true;
+ Options.show_more = true;
+ Options.small_more = false;
#ifdef USE_TILE
Options.tile_tag_pref = TAGPREF_TUTORIAL;