We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3185616 commit f839174Copy full SHA for f839174
src/battle-nads/Combat.sol
@@ -307,7 +307,8 @@ abstract contract Combat is MonsterFactory {
307
308
// Health regen has to be normalized for the default cooldown to prevent quickness points from
309
// giving extreme health regeneration benefits
310
- uint256 targetHealthRegeneration = (uint256(combatant.stats.vitality) + uint256(combatant.stats.level)) * VITALITY_REGEN_MODIFIER;
+ uint256 targetHealthRegeneration =
311
+ (uint256(combatant.stats.vitality) + uint256(combatant.stats.level)) * VITALITY_REGEN_MODIFIER;
312
313
if (combatant.isMonster()) {
314
if (attacker.stats.class == CharacterClass.Boss) {
0 commit comments