summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc14
1 files changed, 10 insertions, 4 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 7fd860051f..d097267b68 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2012,6 +2012,9 @@ static bool _god_accepts_prayer(god_type type)
{
switch(type)
{
+ case GOD_YREDELEMNUL:
+ return (yred_injury_mirror(false));
+
case GOD_VEHUMET:
case GOD_XOM:
case GOD_SHINING_ONE:
@@ -2115,11 +2118,8 @@ void pray()
you.duration[DUR_PRAYER] *= 2;
}
- if (!_god_accepts_prayer(you.religion) || you.religion == GOD_ZIN
- || you.religion == GOD_NEMELEX_XOBEH)
- {
+ if (you.religion == GOD_ZIN || you.religion == GOD_NEMELEX_XOBEH)
you.duration[DUR_PRAYER] = 1;
- }
else if (you.religion == GOD_YREDELEMNUL || you.religion == GOD_ELYVILON)
you.duration[DUR_PRAYER] = 20;
@@ -3480,6 +3480,12 @@ void lose_piety(int pgn)
}
}
+ if (!_god_accepts_prayer(you.religion))
+ {
+ mpr("Your prayer is over.", MSGCH_PRAY, you.religion);
+ you.duration[DUR_PRAYER] = 0;
+ }
+
if (you.piety > 0 && you.piety <= 5)
learned_something_new(TUT_GOD_DISPLEASED);