Core/Spells: Added aoe target cap for demon hunter talent "Fel Barrage"

Port From (https://github.com/TrinityCore/TrinityCore/commit/52dc1359cc78b5d8a88bf32e4bd50d53fcd03d11)
This commit is contained in:
Hondacrx
2025-06-04 09:26:00 -04:00
parent 89c7fa35b2
commit e16f81ecda
+6
View File
@@ -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");
}