summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 9425d8f40a..e6d8b9e83b 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -988,10 +988,7 @@ void monster_die(monsters *monster, killer_type killer, int i, bool silent)
// Randomly bless a follower.
if (!created_friendly
&& gives_xp
- && (you.religion == GOD_SHINING_ONE
- && mons_is_evil_or_unholy(monster)
- && random2(you.piety) >= piety_breakpoint(0)
- || you.religion == GOD_BEOGH
+ && (you.religion == GOD_BEOGH
&& mons_holiness(monster) == MH_NATURAL
&& random2(you.piety) >= piety_breakpoint(2))
&& !player_under_penance())