From bf10ba0f08b2557a8d72b948f556e389c39a9c50 Mon Sep 17 00:00:00 2001 From: Eric Robinson <68359262+kphoenix137@users.noreply.github.com> Date: Wed, 27 Mar 2024 00:31:57 -0400 Subject: [PATCH] Adjust mana shield (#16) --- Source/player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/player.cpp b/Source/player.cpp index 2383dbf6543..d02bea820a3 100644 --- a/Source/player.cpp +++ b/Source/player.cpp @@ -1753,8 +1753,8 @@ bool Player::isWalking() const int Player::GetManaShieldDamageReduction() { - constexpr uint8_t Max = 7; - return 24 - std::min(_pSplLvl[static_cast(SpellID::ManaShield)], Max) * 3; + constexpr uint8_t Max = 20; + return 22 - std::min(_pSplLvl[static_cast(SpellID::ManaShield)], Max); } void Player::RestorePartialLife()