fix(Core/Item): Luffa removing more than one bleed (#7752)

This commit is contained in:
lineagedr
2021-09-12 20:28:23 +03:00
committed by GitHub
parent c0bc20214f
commit 1ae8e7eca5
2 changed files with 16 additions and 0 deletions

View File

@@ -7336,6 +7336,12 @@ void SpellMgr::LoadDbcDataCorrections()
spellInfo->EffectImplicitTargetB[EFFECT_0] = 0;
});
// Item: Luffa removes only 1 bleed effect
ApplySpellFix({ 23595 }, [](SpellEntry* spellInfo)
{
spellInfo->EffectBasePoints[EFFECT_0] = 1;
});
for (uint32 i = 0; i < sSpellStore.GetNumRows(); ++i)
{
SpellEntry* spellInfo = (SpellEntry*)sSpellStore.LookupEntry(i);