summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godconduct.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-02-07 22:50:17 -0700
committerSteve Melenchuk <smelenchuk@gmail.com>2014-02-07 22:52:56 -0700
commitac10382eb90d63194dae765e6ab5fd949b080542 (patch)
treef965818b59e744c8a0681e05dea7836501a115ac /crawl-ref/source/godconduct.cc
parent7d54a282b99ace4f9a8545aed1beef32c8b601ee (diff)
downloadcrawl-ref-ac10382eb90d63194dae765e6ab5fd949b080542.tar.gz
crawl-ref-ac10382eb90d63194dae765e6ab5fd949b080542.zip
Make Dith's base piety gain 2/3 other gods (was 1/2).
Again, bonus from fiery/illuiminating has been kept.
Diffstat (limited to 'crawl-ref/source/godconduct.cc')
-rw-r--r--crawl-ref/source/godconduct.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/godconduct.cc b/crawl-ref/source/godconduct.cc
index a6cedb2366..2eb073b834 100644
--- a/crawl-ref/source/godconduct.cc
+++ b/crawl-ref/source/godconduct.cc
@@ -1062,7 +1062,10 @@ bool did_god_conduct(conduct_type thing_done, int level, bool known,
retval = true;
}
if (you_worship(GOD_DITHMENGOS))
- piety_denom *= 2;
+ {
+ piety_change *= 2;
+ piety_denom *= 3;
+ }
}
#ifdef DEBUG_DIAGNOSTICS