Core/Spells: Living Bomb's explosion will now target up to three targets only

This commit is contained in:
Ovahlord
2019-05-13 00:16:14 +02:00
parent 4a370ea37c
commit 95fc00ba4b

View File

@@ -5263,6 +5263,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->MaxAuraTargets = 3;
});
// Living Bomb
ApplySpellFix({ 44461 }, [](SpellInfo* spellInfo)
{
spellInfo->MaxAffectedTargets = 3;
});
// Lifebloom
ApplySpellFix({ 33763 }, [](SpellInfo* spellInfo)
{