summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.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/player.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/player.cc')
-rw-r--r--crawl-ref/source/player.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 61f6542749..766b6f3082 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -5005,10 +5005,7 @@ int get_real_hp(bool trans, bool rotted)
// Being berserk makes you resistant to damage. I don't know why.
if (trans && you.duration[DUR_BERSERKER])
- {
- hitp *= 15;
- hitp /= 10;
- }
+ hitp *= 2;
if (trans)
{