From e16f81ecda46ca03b6ded00daede0d66fd0aef49 Mon Sep 17 00:00:00 2001 From: Hondacrx Date: Wed, 4 Jun 2025 09:26:00 -0400 Subject: [PATCH] Core/Spells: Added aoe target cap for demon hunter talent "Fel Barrage" Port From (https://github.com/TrinityCore/TrinityCore/commit/52dc1359cc78b5d8a88bf32e4bd50d53fcd03d11) --- Source/Game/Spells/SpellManager.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Game/Spells/SpellManager.cs b/Source/Game/Spells/SpellManager.cs index 48cd9a660..98c568201 100644 --- a/Source/Game/Spells/SpellManager.cs +++ b/Source/Game/Spells/SpellManager.cs @@ -4646,6 +4646,12 @@ namespace Game.Entities spellInfo._LoadSqrtTargetLimit(8, 0, 453034, 1, null, null); }); + // Fel Barrage + ApplySpellFix([258926], spellInfo => + { + spellInfo._LoadSqrtTargetLimit(5, 0, null, 1, null, null); + }); + Log.outInfo(LogFilter.ServerLoading, $"Loaded SpellInfo target caps in {Time.GetMSTimeDiffToNow(oldMSTime)} ms"); }