From 02c09a0128b64954a83c90827e12e1d5ec18468f Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 23 Mar 2008 17:39:55 +0000 Subject: And adjust it yet again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3836 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/monstuff.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source') diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc index 893b95b296..016b1f6c84 100644 --- a/crawl-ref/source/monstuff.cc +++ b/crawl-ref/source/monstuff.cc @@ -412,7 +412,7 @@ static void _give_monster_experience( monsters *victim, if (you.religion == GOD_BEOGH && !player_under_penance() && you.piety >= piety_breakpoint(2) - && random2(you.piety) >= piety_breakpoint(0) + && random2(you.piety) >= piety_breakpoint(1) && !one_chance_in(3)) { bless_follower(GOD_BEOGH, is_orcish_follower, mons); @@ -883,7 +883,7 @@ void monster_die(monsters *monster, killer_type killer, int i, bool silent) && mons_holiness(monster) == MH_NATURAL) && (!player_under_penance() && you.piety >= piety_breakpoint(2) - && random2(you.piety) >= piety_breakpoint(0))) + && random2(you.piety) >= piety_breakpoint(1))) { bless_follower(GOD_BEOGH, is_orcish_follower); } @@ -1017,7 +1017,7 @@ void monster_die(monsters *monster, killer_type killer, int i, bool silent) && mons_holiness(monster) == MH_NATURAL && (!player_under_penance() && you.piety >= piety_breakpoint(2) - && random2(you.piety) >= piety_breakpoint(0) + && random2(you.piety) >= piety_breakpoint(1) && !one_chance_in(3)) && !invalid_monster_index(i)) { -- cgit v1.2.3-54-g00ecf