diff options
author | Darshan Shaligram <dshaligram@users.sourceforge.net> | 2010-01-18 13:34:25 +0530 |
---|---|---|
committer | Darshan Shaligram <dshaligram@users.sourceforge.net> | 2010-01-18 13:34:25 +0530 |
commit | f7867134d3d5cb341370f8ac335d263005c4e895 (patch) | |
tree | 18705a6e5c35d0013ee33ff1f3438da7b25125cc | |
parent | e15bfc7dc6516bbd87dfd31325016567b597d901 (diff) | |
download | crawl-ref-master.tar.gz crawl-ref-master.zip |
-rw-r--r-- | crawl-ref/source/player.cc | 2 |
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) { |