summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 19399d3c7c..72cf0a8836 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -706,7 +706,7 @@ void drain_life(int pow)
}
}
- hp_gain = hp_gain / 2 + 1;
+ hp_gain = hp_gain / 2;
hp_gain = std::min(pow * 2, hp_gain);
@@ -776,7 +776,7 @@ bool vampiric_drain(int pow, const dist &vmove)
if (monster->alive())
print_wounds(monster);
- inc_hp(inflicted / 2 + 1, false);
+ inc_hp(inflicted / 2, false);
}
return (success);