mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
Fix Replenishment to apply 1% every 5 seconds rather then 4. Thanks to Morpheux for pointing it out.
--HG-- branch : trunk
This commit is contained in:
@@ -1536,7 +1536,7 @@ void AuraEffect::HandleAuraEffectSpecificMods(bool apply, bool Real, bool change
|
||||
// Replenishment (0.25% from max)
|
||||
// Infinite Replenishment
|
||||
if (m_spellProto->SpellIconID == 3184 && m_spellProto->SpellVisual[0] == 12495 && GetAuraName() == SPELL_AURA_PERIODIC_ENERGIZE)
|
||||
m_amount = m_target->GetMaxPower(POWER_MANA) * 25 / 10000;
|
||||
m_amount = m_target->GetMaxPower(POWER_MANA) * 20 / 10000;
|
||||
break;
|
||||
case SPELLFAMILY_MAGE:
|
||||
// Mana Shield
|
||||
|
||||
Reference in New Issue
Block a user