From 792abba0fd36eae8decffa2863aa27c8f54ed219 Mon Sep 17 00:00:00 2001 From: qndel Date: Fri, 30 Aug 2019 17:07:19 +0200 Subject: [PATCH] [hellfire] ModifyPlrStr bin exact --- Source/player.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/player.cpp b/Source/player.cpp index ee253fee4..498220ed6 100644 --- a/Source/player.cpp +++ b/Source/player.cpp @@ -3891,11 +3891,13 @@ void ModifyPlrStr(int p, int l) plr[p]._pStrength += l; plr[p]._pBaseStr += l; +#ifndef HELLFIRE if (plr[p]._pClass == PC_ROGUE) { plr[p]._pDamageMod = plr[p]._pLevel * (plr[p]._pStrength + plr[p]._pDexterity) / 200; } else { plr[p]._pDamageMod = plr[p]._pLevel * plr[p]._pStrength / 100; } +#endif CalcPlrInv(p, TRUE);