From b78cbef511ff37d3366fc2ce92485c8923965ffb Mon Sep 17 00:00:00 2001 From: Angelo Venturini Date: Sun, 21 Aug 2022 10:57:48 -0300 Subject: [PATCH] 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> --- src/server/game/Spells/SpellInfoCorrections.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/server/game/Spells/SpellInfoCorrections.cpp b/src/server/game/Spells/SpellInfoCorrections.cpp index 4a46e8115..374774813 100644 --- a/src/server/game/Spells/SpellInfoCorrections.cpp +++ b/src/server/game/Spells/SpellInfoCorrections.cpp @@ -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];