summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2009-12-14 20:51:57 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2009-12-14 22:13:09 +0100
commit539dbf5709e42f94969dcf025890de6027dd0cf9 (patch)
tree317959c5af149794c99b6f116b0546e6fe908ab8 /crawl-ref/source/religion.cc
parent7da14e8092377fbda2ea8811b01f7a4afba16072 (diff)
downloadcrawl-ref-539dbf5709e42f94969dcf025890de6027dd0cf9.tar.gz
crawl-ref-539dbf5709e42f94969dcf025890de6027dd0cf9.zip
Increase tension in the Abyss by a factor of 3/2.
Not sure if this matters to anyone except Xom.
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 3aa2db88ff..3a2a86b920 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -5573,7 +5573,15 @@ int get_tension(god_type god, bool count_travelling)
tension /= div;
if (you.level_type == LEVEL_ABYSS)
- tension = std::max(2, tension);
+ {
+ if (tension < 2)
+ tension = 2;
+ else
+ {
+ tension *= 3;
+ tension /= 2;
+ }
+ }
if (you.cannot_act())
{