summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/monstuff.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index b0cbbb041a..568e119101 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -1368,8 +1368,7 @@ int monster_die(monsters *monster, killer_type killer,
if (!created_friendly
&& gives_xp
&& (you.religion == GOD_BEOGH
- && mons_holiness(monster) == MH_NATURAL
- && random2(you.piety) >= piety_breakpoint(2))
+ && random2(you.piety) >= piety_breakpoint(2))
&& !player_under_penance())
{
bless_follower();
@@ -1568,7 +1567,6 @@ int monster_die(monsters *monster, killer_type killer,
// Randomly bless the follower who killed.
if (you.religion == GOD_BEOGH
- && mons_holiness(monster) == MH_NATURAL
&& random2(you.piety) >= piety_breakpoint(2)
&& !player_under_penance()
&& !one_chance_in(3)