Skip to content

Commit

Permalink
Reduced Diablo and Na-Krul's life regeneration rate by half
Browse files Browse the repository at this point in the history
  • Loading branch information
SoundChaser83 committed Jan 15, 2022
1 parent 4fe7423 commit 345b6cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Source/monster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4290,7 +4290,10 @@ void ProcessMonsters()
}
if ((monster._mFlags & MFLAG_NOHEAL) == 0 && monster._mhitpoints < monster._mmaxhp && monster._mhitpoints >> 6 > 0) {
if (monster.mLevel > 1) {
monster._mhitpoints += monster.mLevel / 2;
if (monster.MType->mtype != MT_DIABLO && monster.MType->mtype != MT_NAKRUL)
monster._mhitpoints += monster.mLevel / 2;
else
monster._mhitpoints += monster.mLevel / 4;
} else {
monster._mhitpoints += monster.mLevel;
}
Expand Down

0 comments on commit 345b6cd

Please sign in to comment.