aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeader <keader.android@gmail.com>2019-04-21 11:01:59 -0300
committerShauren <shauren.trinity@gmail.com>2021-12-02 00:37:00 +0100
commit4b3e6b999803af6fc7322a536a79b2638b60d65d (patch)
treee827496f7599cd5654e1853f8411fd45c33d4882 /src
parent001b9fb05c334a76b067872f98c8e48e9c743ef8 (diff)
Scripts/Spells: Fixed a console error inspell_dru_lifebloom
Closes #23192 (cherry picked from commit 961bc9d829e18004e3071837a67f5acdfdd7dd2c)
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_druid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_druid.cpp b/src/server/scripts/Spells/spell_druid.cpp
index ad82af77549..48c77e2eb33 100644
--- a/src/server/scripts/Spells/spell_druid.cpp
+++ b/src/server/scripts/Spells/spell_druid.cpp
@@ -902,7 +902,7 @@ public:
return;
// final heal
- OnRemoveEffect(GetTarget(), aurEff, GetStackAmount());
+ OnRemoveEffect(GetUnitOwner(), aurEff, GetStackAmount());
}
void HandleDispel(DispelInfo* dispelInfo)