diff options
author | Andrew <47818697+Nyeriah@users.noreply.github.com> | 2024-11-13 19:46:06 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 19:46:06 -0300 |
commit | bdb6ef8937725f0522aeb9d703d92651f20b6f0f (patch) | |
tree | 488635e215cabaa1100d47495f6b103512ef3c83 /src | |
parent | 35ebe2f9c6b932ede4f7a8b10c7837430b603ed4 (diff) |
fix(Scripts/TheEye): Fix Wrath of the Astromancer's original caster (#20549)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp index 309fd555fa..4378d6a246 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp @@ -256,7 +256,7 @@ class spell_astromancer_wrath_of_the_astromancer : public AuraScript return; Unit* target = GetUnitOwner(); - target->CastSpell(target, GetSpellInfo()->Effects[EFFECT_1].CalcValue(), false); + target->CastSpell(target, GetSpellInfo()->Effects[EFFECT_1].CalcValue(), false, nullptr, nullptr, GetCaster () ? GetCaster()->GetGUID() : ObjectGuid::Empty); } void Register() override |