fix(Core/Spells): Fix Beacon of Light healing attribution (#24836)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
blinkysc
2026-02-23 18:47:03 -06:00
committed by GitHub
parent e8ce033087
commit 0fb5b2dfe3

View File

@@ -2157,7 +2157,7 @@ class spell_pal_light_s_beacon : public AuraScript
if (!beaconTarget || !beaconTarget->HasAura(SPELL_PALADIN_BEACON_OF_LIGHT_AURA, eventInfo.GetActor()->GetGUID()))
return;
eventInfo.GetActor()->CastCustomSpell(healSpellId, SPELLVALUE_BASE_POINT0, heal, beaconTarget, true, nullptr, aurEff);
eventInfo.GetActor()->CastCustomSpell(healSpellId, SPELLVALUE_BASE_POINT0, heal, beaconTarget, true, nullptr, aurEff, eventInfo.GetActor()->GetGUID());
}
void Register() override