From 6fe941575bb08b3befd7860b395a61301be29059 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 1 Dec 2021 20:44:05 -0500 Subject: [PATCH] Scripts/Spells: Fixed a console error inspell_dru_lifebloom Port From (https://github.com/TrinityCore/TrinityCore/commit/4b3e6b999803af6fc7322a536a79b2638b60d65d) --- Source/Scripts/Spells/Druid.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Scripts/Spells/Druid.cs b/Source/Scripts/Spells/Druid.cs index de026dc65..7ed5746be 100644 --- a/Source/Scripts/Spells/Druid.cs +++ b/Source/Scripts/Spells/Druid.cs @@ -743,7 +743,7 @@ namespace Scripts.Spells.Druid return; // final heal - OnRemoveEffect(GetTarget(), aurEff, GetStackAmount()); + OnRemoveEffect(GetUnitOwner(), aurEff, GetStackAmount()); } void HandleDispel(DispelInfo dispelInfo)