Skip to content

Commit

Permalink
Core/Player: fix incorrect Warrior Block Value calculations (TrinityC…
Browse files Browse the repository at this point in the history
  • Loading branch information
CraftedRO authored Mar 14, 2024
1 parent 4e54a4f commit 37e220d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Entities/Player/Player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5092,7 +5092,7 @@ void Player::ApplyBaseModPctValue(BaseModGroup modGroup, float pct)
return;
}

AddPct(m_auraBasePctMod[modGroup], pct);
m_auraBasePctMod[modGroup] += CalculatePct(1.0f, pct);
UpdateBaseModGroup(modGroup);
}

Expand Down

0 comments on commit 37e220d

Please sign in to comment.