summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-21 20:06:40 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-21 20:06:40 +0000
commit558369bbce7f220ad75eccc666d600662bc04ba1 (patch)
tree6d860accdcaef74329521b73b93138db22b3068c /crawl-ref/source/acr.cc
parent184e389300599a200acf26651322df2391cde2d1 (diff)
downloadcrawl-ref-558369bbce7f220ad75eccc666d600662bc04ba1.tar.gz
crawl-ref-558369bbce7f220ad75eccc666d600662bc04ba1.zip
Berserking now gives double HP instead of 50% more.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9527 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index e5ee5f59da..474b201667 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2341,7 +2341,7 @@ static void _decrement_durations()
you.hunger = std::max(50, you.hunger);
// 1KB: No berserk healing.
- you.hp = (you.hp + 1) * 2 / 3;
+ you.hp = (you.hp + 1) / 2;
calc_hp();
learned_something_new(TUT_POSTBERSERK);