diff --git a/doc/fixes34.3 b/doc/fixes34.3 index 71ea15be1..de130d9b3 100644 --- a/doc/fixes34.3 +++ b/doc/fixes34.3 @@ -2,6 +2,7 @@ $RCSfile$ $Revision$ $Date$ General Fixes and Modified Features ----------------------------------- +monster draining the player using Stormbringer decreased monster's hitpoints Platform- and/or Interface-Specific Fixes diff --git a/src/artifact.c b/src/artifact.c index bb70d9b93..a624e5e5a 100644 --- a/src/artifact.c +++ b/src/artifact.c @@ -1157,7 +1157,7 @@ int dieroll; /* needed for Magicbane and vorpal blades */ The(distant_name(otmp, xname))); losexp("life drainage"); if (magr && magr->mhp < magr->mhpmax) { - magr->mhp += (u.uhpmax - oldhpmax)/2; + magr->mhp += (oldhpmax - u.uhpmax)/2; if (magr->mhp > magr->mhpmax) magr->mhp = magr->mhpmax; } return TRUE;