fix(Core/Spells): Lady Blaumeux and Sir Zeliek's cast uninterruptable (#24534)

This commit is contained in:
sogladev 2026-02-11 08:34:18 +01:00 committed by GitHub
parent f9de106230
commit b2d212c0a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5190,6 +5190,16 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].MiscValueB = 64;
});
ApplySpellFix({
57374, // Shadow Bolt (Lady Blaumeux 10m)
57464, // Shadow Bolt (Lady Blaumeux 25m)
57376, // Holy Bolt (Sir Zeliek 10m)
57465, // Holy Bolt (Sir Zeliek 25m)
}, [](SpellInfo* spellInfo)
{
spellInfo->InterruptFlags &= ~SPELL_INTERRUPT_FLAG_INTERRUPT;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];