summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@sourceforge.net>2011-02-03 19:19:47 +0100
committerJohanna Ploog <j-p-e-g@sourceforge.net>2011-02-03 21:27:35 +0100
commitd0de38cf98c2616dc0d2e35f6ddd2326081c44b8 (patch)
treed73ab66a70c71fa6798d004459d50c05c12c2048 /crawl-ref/source/tutorial.cc
parentb1d1c8eca886e034fe886174574a98fd9adb3b0d (diff)
downloadcrawl-ref-d0de38cf98c2616dc0d2e35f6ddd2326081c44b8.tar.gz
crawl-ref-d0de38cf98c2616dc0d2e35f6ddd2326081c44b8.zip
Various tutorial tweaks, mostly wording fixes.
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 b54b5c56c4..ed894c01e4 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -70,7 +70,9 @@ void tutorial_init_hint(const char* hintstr)
hints_event_type hint = HINT_EVENTS_NUM;
if (strcmp(hintstr, "HINT_NEW_LEVEL") == 0)
hint = HINT_NEW_LEVEL;
- else if (strcmp(hintstr, "HINT_YOU_CURSED") == 0)
+ else if (strcmp(hintstr, "HINT_CHOOSE_STAT") == 0)
+ hint = HINT_CHOOSE_STAT;
+ else if (strcmp(hintstr, "HINT_YOU_CURSED") == 0)
hint = HINT_YOU_CURSED;
else if (strcmp(hintstr, "HINT_REMOVED_CURSE") == 0)
hint = HINT_REMOVED_CURSE;