mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-24 06:06:23 +00:00
fix(Spells/SpellInfoCorrections): remove AURA_INTERRUPT_FLAG_NOT_ABOVEWATER from some mounts (#19431)
remove AURA_INTERRUPT_FLAG_NOT_ABOVEWATER for some mounts
This commit is contained in:
@@ -4821,6 +4821,19 @@ void SpellMgr::LoadSpellInfoCorrections()
|
||||
spellInfo->AttributesEx6 |= SPELL_ATTR6_NO_PUSHBACK;
|
||||
});
|
||||
|
||||
ApplySpellFix({
|
||||
471, // Palamino
|
||||
8980, // Skeletal Horse
|
||||
10788, // Leopard
|
||||
10790, // Tiger
|
||||
10792, // Spotted Panther
|
||||
60136, // Grand Caravan Mammoth
|
||||
60140 // Grand Caravan Mammoth
|
||||
}, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->AuraInterruptFlags &= ~AURA_INTERRUPT_FLAG_NOT_ABOVEWATER;
|
||||
});
|
||||
|
||||
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||
{
|
||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||
|
||||
Reference in New Issue
Block a user