Core/Spells: corrected the multiplier for Resurgence's mana gain effect

This commit is contained in:
Ovahlord
2022-06-13 14:24:33 +02:00
parent 0e6edacac3
commit 7438afca74

View File

@@ -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);
}