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:35:27 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-21 18:35:27 +0100
commit9649b5274d6b88e12203feb821e609b548536890 (patch)
tree6cf34ce6122f4a83555eff76555830e4e3355d3c /crawl-ref/source/tutorial.cc
parentc7ea4f7e7e5139cacef065d12b4e485acfd76173 (diff)
downloadcrawl-ref-9649b5274d6b88e12203feb821e609b548536890.tar.gz
crawl-ref-9649b5274d6b88e12203feb821e609b548536890.zip
In the tutorial, don't give the berserk death hint if already berserk.
It's frustrating to get told you should have used the berserk ability if you already did.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 3c2b2cba59..95d8b35694 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -794,7 +794,7 @@ void tutorial_death_screen()
"spells more often! Remember to rest when your Magic is low.";
}
else if (you.religion == GOD_TROG && Tutorial.tut_berserk_counter <= 3
- && !you.duration[DUR_EXHAUSTED])
+ && !you.duration[DUR_BERSERKER] && !you.duration[DUR_EXHAUSTED])
{
text = "Don't forget to go berserk when fighting particularly "
"difficult foes. It is risky, but makes you faster and beefier.";