From 539dbf5709e42f94969dcf025890de6027dd0cf9 Mon Sep 17 00:00:00 2001 From: Johanna Ploog Date: Mon, 14 Dec 2009 20:51:57 +0100 Subject: Increase tension in the Abyss by a factor of 3/2. Not sure if this matters to anyone except Xom. --- crawl-ref/source/religion.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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()) { -- cgit v1.2.3-54-g00ecf