fix(Core/Spells): Dungeon T3 2P Bonuses for Wastewalker & Doomplate. (#16076)

This commit is contained in:
avarishd
2023-05-14 17:37:50 +03:00
committed by GitHub
parent 9c1e6ca954
commit ff6d88f6de

View File

@@ -4521,6 +4521,13 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->CastTimeEntry = sSpellCastTimesStore.LookupEntry(1); // 0s
});
// Hit Rating (Dungeon T3 - 2P Bonus - Wastewalker, Doomplate)
ApplySpellFix({ 37608, 37610 }, [](SpellInfo* spellInfo)
{
spellInfo->DurationEntry = sSpellDurationStore.LookupEntry(0);
spellInfo->Effects[EFFECT_0].MiscValue = 224;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];