summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-02-05 02:34:43 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-02-05 02:34:43 +0000
commit3b1b2e0dd099c574c0305da9f3e3aaa7e4bf9141 (patch)
tree32c38fb4696631a0033a72df88a310d2078105a7 /crawl-ref
parent5d1b831fa8fef53755d0512981ede3842e44f2fe (diff)
downloadcrawl-ref-3b1b2e0dd099c574c0305da9f3e3aaa7e4bf9141.tar.gz
crawl-ref-3b1b2e0dd099c574c0305da9f3e3aaa7e4bf9141.zip
Adjust the neutrality check for holy beings: If a follower of the good
gods has piety of at least 150, holy beings will always be neutral. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3398 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/view.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 11dd9ae101..e4512ca05b 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -762,7 +762,7 @@ static void good_god_follower_convert(monsters *monster)
{
monster->flags |= MF_CONVERT_ATTEMPT;
- if (you.piety > random2(200) && !you.penance[you.religion])
+ if (you.piety > random2(150) && !you.penance[you.religion])
{
int wpn = you.equip[EQ_WEAPON];
if (wpn != -1