summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}