mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 09:17:36 +01:00
Core/Spells: fix issue with previous commit. i cant do math.
This commit is contained in:
@@ -665,7 +665,7 @@ int32 AuraEffect::CalculateAmount(Unit* caster)
|
||||
// Replenishment (0.2% from max)
|
||||
// Infinite Replenishment
|
||||
if (m_spellInfo->SpellIconID == 3184 && m_spellInfo->SpellVisual[0] == 12495)
|
||||
amount = GetBase()->GetUnitOwner()->GetMaxPower(POWER_MANA) * 0.2f;
|
||||
amount = GetBase()->GetUnitOwner()->GetMaxPower(POWER_MANA) * 0.002f;
|
||||
}
|
||||
// Innervate
|
||||
else if (m_spellInfo->Id == 29166)
|
||||
|
||||
Reference in New Issue
Block a user