From eb8c3ef518567bc8ae5f87a99cd16f2c22262607 Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 20 Apr 2008 23:07:05 +0000 Subject: And clean it up yet again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4424 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/spells1.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/spells1.cc') diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc index 1d6cdc4682..26e16a7fbd 100644 --- a/crawl-ref/source/spells1.cc +++ b/crawl-ref/source/spells1.cc @@ -766,9 +766,9 @@ bool cast_revitalisation(int pow) } // Use the formula for minor healing for HP, and the formula divided - // by two for MP. + // roughly in half for MP. int hp_amount = pow + roll_dice(2, pow) - 2; - int mp_amount = (pow + roll_dice(2, pow) - 2) / 2; + int mp_amount = (pow + roll_dice(2, pow) - 2) / 2 + 1; inc_hp(hp_amount, false); inc_mp(mp_amount, false); -- cgit v1.2.3-54-g00ecf