fix(Core/Spells): Rental Racing Ram will not be removed upon entering… (#13192)

...water.
This commit is contained in:
UltraNix
2022-10-06 02:35:46 +02:00
committed by GitHub
parent f386e35d8c
commit 78a383f4f7

View File

@@ -4409,6 +4409,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->DurationEntry = sSpellDurationStore.LookupEntry(27);
});
// Rental Racing Ram
ApplySpellFix({ 43883 }, [](SpellInfo* spellInfo)
{
spellInfo->AuraInterruptFlags &= ~AURA_INTERRUPT_FLAG_NOT_ABOVEWATER;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];