mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 11:25:42 +00:00
fix(Core/Units): Fixed uninitialized `m_cleanDamage` variable aftere390087. Improved252755415c
This commit is contained in:
@@ -122,7 +122,7 @@ class spell_rog_blade_flurry : public AuraScript
|
||||
DamageInfo* damageInfo = eventInfo.GetDamageInfo();
|
||||
if (procTarget && damageInfo)
|
||||
{
|
||||
int32 damage = damageInfo->GetDamage();
|
||||
int32 damage = damageInfo->GetUnmitigatedDamage();
|
||||
|
||||
CustomSpellValues values;
|
||||
values.AddSpellMod(SPELLVALUE_BASE_POINT0, damage);
|
||||
|
||||
Reference in New Issue
Block a user