fix(DB/SAI): Void Baron Galaxis encounter. (#15312)

* fix(DB/SAI): Void Baron Galaxis encounter.

* remove item cast + add void storm cloud
This commit is contained in:
avarishd
2023-05-10 12:29:51 +03:00
committed by GitHub
parent fec1692716
commit 3aedf2fbf8
2 changed files with 31 additions and 0 deletions

View File

@@ -4500,6 +4500,18 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_DOT_STACKING_RULE;
});
// Absorb Life
ApplySpellFix({ 34239 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].ValueMultiplier = 1;
});
// Summon a Warp Rift in Void Ridge
ApplySpellFix({ 35036 }, [](SpellInfo* spellInfo)
{
spellInfo->CastTimeEntry = sSpellCastTimesStore.LookupEntry(1); // 0s
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];