From ac27d322b1bf11c271b2c9333cb179268f02fa1f Mon Sep 17 00:00:00 2001 From: Hondacrx Date: Sun, 10 Nov 2024 13:31:25 -0500 Subject: [PATCH] Core/Spells: Remove setting OriginalCastId from CastSpellExtraArgs::SetTriggeringAura Port From (https://github.com/TrinityCore/TrinityCore/commit/f604661a40d05cb1f06e5e0b3112591ebb3aa1a6) --- Source/Game/Spells/Spell.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index 284e526fb..60be3864f 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -9886,9 +9886,6 @@ namespace Game.Spells public CastSpellExtraArgs SetTriggeringAura(AuraEffect triggeringAura) { TriggeringAura = triggeringAura; - if (triggeringAura != null) - OriginalCastId = triggeringAura.GetBase().GetCastId(); - return this; }