summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-28 22:27:24 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-28 22:27:24 +0000
commitbfebe3f89a8797b69195ed4c056df77173c8ea45 (patch)
tree7fc561134437ed8b15d51446788e0f06fc9e3009 /crawl-ref/source/newgame.cc
parentb6ccd631537a4470096d5881058d67268403a88c (diff)
downloadcrawl-ref-bfebe3f89a8797b69195ed4c056df77173c8ea45.tar.gz
crawl-ref-bfebe3f89a8797b69195ed4c056df77173c8ea45.zip
Only give starting healing potions to priests of Zin, as they only fit
him thematically, and priests of Yred and Beogh are strong enough without them. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9292 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 4a37f2dd9e..2c18905cc7 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -4858,7 +4858,7 @@ bool _give_items_skills()
_newgame_make_item(1, EQ_BODY_ARMOUR, OBJ_ARMOUR, ARM_ROBE);
- if (you.is_undead != US_UNDEAD)
+ if (you.religion == GOD_ZIN)
_newgame_make_item(2, EQ_NONE, OBJ_POTIONS, POT_HEALING, -1, 2);
you.skills[SK_FIGHTING] = 2;