diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-01-09 12:45:32 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-01-09 12:45:32 +0100 |
commit | 30f232d5dbf6fabbec88efb98585857f16ee4d13 (patch) | |
tree | 0586ada72756e611feb63bcd762795ec30d650b7 | |
parent | 56c43a5fa9b9433042537ecd9423ea069fd7537e (diff) |
Scripts/Spells: Fixed shaman Healing Rain not doing anything
-rw-r--r-- | src/server/scripts/Spells/spell_shaman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_shaman.cpp b/src/server/scripts/Spells/spell_shaman.cpp index 1cc2cfca560..4f720e74af9 100644 --- a/src/server/scripts/Spells/spell_shaman.cpp +++ b/src/server/scripts/Spells/spell_shaman.cpp @@ -604,7 +604,7 @@ class spell_sha_healing_rain : public SpellScript void Register() override { - OnHit += SpellHitFn(spell_sha_healing_rain::InitializeVisualStalker); + AfterHit += SpellHitFn(spell_sha_healing_rain::InitializeVisualStalker); } }; |