fix(Script/SpellInfo): Summon Scourged Captive spell now summons only one creature (#23768)

This commit is contained in:
Rocco Silipo
2025-11-19 01:29:13 +01:00
committed by GitHub
parent 539581aa7a
commit 4545ca3e87

View File

@@ -5131,6 +5131,13 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->ChannelInterruptFlags &= ~AURA_INTERRUPT_FLAG_TURNING;
});
// Summon Scourged Captive
ApplySpellFix({ 51597 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].BasePoints = 1;
spellInfo->Effects[EFFECT_0].DieSides = 0;
});
// The Green Tower
ApplySpellFix({ 18097 }, [](SpellInfo* spellInfo)
{