summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-11 17:35:14 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-11 17:35:14 -0500
commit6c8b8a556e0e92e993a82ab1c15ba40cfd180151 (patch)
tree33beec101cab48bbc248126668d5491abe73f0c8
parent5d07ac8c99be9d18a372a81858f8995e2dd7b1be (diff)
downloadcrawl-ref-6c8b8a556e0e92e993a82ab1c15ba40cfd180151.tar.gz
crawl-ref-6c8b8a556e0e92e993a82ab1c15ba40cfd180151.zip
Revert the prayer duration change for gods who like fresh
corpses/butchery, since it keeps the status quo.
-rw-r--r--crawl-ref/source/religion.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 5b8ae2003b..270a4ca04b 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2504,14 +2504,8 @@ void pray()
you.duration[DUR_PRAYER] *= 2;
}
- // Assume for now that gods who like fresh corpses and/or butchery
- // don't use prayer for anything else.
- if (you.religion == GOD_ZIN
- || you.religion == GOD_BEOGH
- || you.religion == GOD_NEMELEX_XOBEH
- || you.religion == GOD_JIYVA
- || god_likes_fresh_corpses(you.religion)
- || god_likes_butchery(you.religion))
+ if (you.religion == GOD_ZIN || you.religion == GOD_BEOGH
+ || you.religion == GOD_NEMELEX_XOBEH || you.religion == GOD_JIYVA)
{
you.duration[DUR_PRAYER] = 1;
}