Skip to content

Commit

Permalink
Fix missing brace
Browse files Browse the repository at this point in the history
  • Loading branch information
kphoenix137 committed Oct 6, 2024
1 parent 17dfbcb commit ff86757
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Source/items.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2638,6 +2638,7 @@ void CalcPlrLifeMana(Player &player, int vitality, int magic, int life, int mana

player._pMaxMana = std::max(mana + player._pMaxManaBase, 0);
player._pMana = std::min(mana + player._pManaBase, player._pMaxMana);
}

void CalcPlrBlockFlag(Player &player)
{
Expand Down

0 comments on commit ff86757

Please sign in to comment.