mana regen change

This commit is contained in:
2025-01-10 22:09:29 -06:00
parent a9bc44f19b
commit 93e0d119b0
+1 -1
View File
@@ -5170,7 +5170,7 @@ public class PlayerCharacter extends AbstractCharacter {
if (this.walkMode) if (this.walkMode)
manaRegen = ((this.manaMax * MBServerStatics.MANA_REGEN_IDLE) * getRegenModifier(ModType.ManaRecoverRate)); manaRegen = ((this.manaMax * MBServerStatics.MANA_REGEN_IDLE) * getRegenModifier(ModType.ManaRecoverRate));
else if (!this.isCasting() && !this.isItemCasting()) else if (!this.isCasting() && !this.isItemCasting())
manaRegen = ((this.manaMax * MBServerStatics.MANA_REGEN_IDLE) * getRegenModifier(ModType.ManaRecoverRate)); manaRegen = ((this.manaMax * MBServerStatics.MANA_REGEN_RUN) * getRegenModifier(ModType.ManaRecoverRate));
else else
manaRegen = 0; manaRegen = 0;