mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-27 22:16:11 +00:00
fix(Core/Spells): Lady Blaumeux and Sir Zeliek's cast uninterruptable (#24534)
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user