fix(Core/RuinsOfAhnQiraj): Lash should not disarm (#12788)

* fix(Core/RuinsOfAhnQiraj): Lash should not disarm

* Update src/server/game/Spells/SpellInfoCorrections.cpp

Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>

Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
This commit is contained in:
Angelo Venturini
2022-08-21 10:57:48 -03:00
committed by GitHub
parent 241cbac46a
commit b78cbef511

View File

@@ -4348,6 +4348,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx6 |= SPELL_ATTR6_IGNORE_CASTER_DAMAGE_MODIFIERS;
});
// Lash
ApplySpellFix({ 25852 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_1].Effect = 0;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];