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:
parent
241cbac46a
commit
b78cbef511
1 changed files with 6 additions and 0 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue