summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 5ca5c8ae88..11fa48009e 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -8176,7 +8176,11 @@ int get_tension(god_type god, bool count_travelling)
}
if (mons->has_ench(ENCH_BERSERK))
- exper *= 2;
+ {
+ // in addition to haste and might bonuses above
+ exper *= 3;
+ exper /= 2;
+ }
total += exper;
}