summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2010-01-18 13:34:25 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2010-01-18 13:34:25 +0530
commitf7867134d3d5cb341370f8ac335d263005c4e895 (patch)
tree18705a6e5c35d0013ee33ff1f3438da7b25125cc /crawl-ref/source/player.cc
parente15bfc7dc6516bbd87dfd31325016567b597d901 (diff)
downloadcrawl-ref-f7867134d3d5cb341370f8ac335d263005c4e895.tar.gz
crawl-ref-f7867134d3d5cb341370f8ac335d263005c4e895.zip
Scale berserk maxhp also by 1.5 (hp was 1.5x, maxhp was 2x).HEADmaster
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 7163906662..c5a5cf6a5a 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -4536,7 +4536,7 @@ int get_real_hp(bool trans, bool rotted)
// Being berserk makes you resistant to damage. I don't know why.
if (trans && you.berserk())
- hitp *= 2;
+ hitp = hitp * 3 / 2;
if (trans)
{