fix(Core/Spells): Overflow damage (#13424)

This commit is contained in:
Angelo Venturini
2022-10-15 19:42:25 -03:00
committed by GitHub
parent 7530d6aff5
commit 252755415c
3 changed files with 3 additions and 3 deletions

View File

@@ -122,7 +122,7 @@ class spell_rog_blade_flurry : public AuraScript
DamageInfo* damageInfo = eventInfo.GetDamageInfo();
if (procTarget && damageInfo)
{
int32 damage = damageInfo->GetUnmitigatedDamage();
int32 damage = damageInfo->GetDamage();
CustomSpellValues values;
values.AddSpellMod(SPELLVALUE_BASE_POINT0, damage);