summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-07 20:21:55 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-07 20:21:55 +0000
commitad684e38fe54332dc2e3bbc361e53312786238da (patch)
treed0de86a4868a3a66504171411a452a5cc17d24b9 /crawl-ref
parenteda3b268aa22936a72c9c2f39ca30fc733638719 (diff)
downloadcrawl-ref-ad684e38fe54332dc2e3bbc361e53312786238da.tar.gz
crawl-ref-ad684e38fe54332dc2e3bbc361e53312786238da.zip
Increase penance for attacking neutral god gifts, now that they no
longer attack you if you're in their way. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4108 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/religion.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index a9600a1f77..654effbaa6 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1740,7 +1740,7 @@ bool did_god_conduct( conduct_type thing_done, int level, bool known,
simple_god_message(" did not appreciate that!");
break;
}
- penance = std::min(level, 5);
+ penance = level/2 + 1;
// deliberate fall through
case GOD_ZIN:
if (!known)