From 8ed1816d00fb1e666a947279e1615a89bb15e988 Mon Sep 17 00:00:00 2001 From: Charles A Edwards Date: Sat, 13 Feb 2016 07:50:50 +0000 Subject: [PATCH] (Author Olion17) Character manaregen: looks like one /2 was excessive Commit ac780d8 on Cabfever's repo --- src/game/Object/StatSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/Object/StatSystem.cpp b/src/game/Object/StatSystem.cpp index 97b81cc7..6b2bb716 100644 --- a/src/game/Object/StatSystem.cpp +++ b/src/game/Object/StatSystem.cpp @@ -518,7 +518,7 @@ void Player::UpdateAllSpellCritChances() void Player::UpdateManaRegen() { // Mana regen from spirit - float power_regen = OCTRegenMPPerSpirit() / 2.0f; + float power_regen = OCTRegenMPPerSpirit(); // Apply PCT bonus from SPELL_AURA_MOD_POWER_REGEN_PERCENT aura on spirit base regen power_regen *= GetTotalAuraMultiplierByMiscValue(SPELL_AURA_MOD_POWER_REGEN_PERCENT, POWER_MANA);