mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-06 08:59:11 +01:00
Core/Spells: corrected the multiplier for Resurgence's mana gain effect
This commit is contained in:
@@ -1150,7 +1150,7 @@ class spell_sha_resurgence : public AuraScript
|
||||
}
|
||||
|
||||
|
||||
int32 bp = baseAmount * modifier / aurEff->GetAmount();
|
||||
int32 bp = baseAmount * modifier * (aurEff->GetAmount() / 100.f);
|
||||
GetTarget()->EnergizeBySpell(GetTarget(), SPELL_SHAMAN_RESURGENCE_ENERGIZE, bp, POWER_MANA);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user