mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-05 12:03:48 +00:00
fix(Core/Spells): Dungeon T3 2P Bonuses for Wastewalker & Doomplate. (#16076)
This commit is contained in:
@@ -4521,6 +4521,13 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||||||
spellInfo->CastTimeEntry = sSpellCastTimesStore.LookupEntry(1); // 0s
|
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)
|
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||||
{
|
{
|
||||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||||
|
|||||||
Reference in New Issue
Block a user