From 5874294745242b4cdce05adf417c8bf4f0d3a893 Mon Sep 17 00:00:00 2001 From: Hondacrx Date: Sun, 25 Aug 2024 21:37:57 -0400 Subject: [PATCH] Core/Spells: Fixed UnitData::ChannelObjects for channeled spells using dest targets Port From (https://github.com/TrinityCore/TrinityCore/commit/453977cc6de8cfff81ab55532acf38de6d693173) --- Source/Game/Spells/Spell.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index 6aad9be21..0e66ad9e8 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -4497,7 +4497,7 @@ namespace Game.Spells m_timer = (int)duration; - if (!m_targets.HasDst()) + if (!m_UniqueTargetInfo.Empty() || !m_UniqueGOTargetInfo.Empty()) { uint channelAuraMask = 0; uint explicitTargetEffectMask = 0xFFFFFFFF;