summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-23 17:39:55 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-23 17:39:55 +0000
commit02c09a0128b64954a83c90827e12e1d5ec18468f (patch)
treea84c280157c39fe8170285eae921f358b9e9395c /crawl-ref/source
parent32aed4c1254b6ffa61f7c68e2498550eba96f5c0 (diff)
downloadcrawl-ref-02c09a0128b64954a83c90827e12e1d5ec18468f.tar.gz
crawl-ref-02c09a0128b64954a83c90827e12e1d5ec18468f.zip
And adjust it yet again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3836 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/monstuff.cc6
1 files changed, 3 insertions, 3 deletions
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))
{