fix(Script/SpellInfo): Summon Scourged Captive spell now summons only one creature (#23768)
This commit is contained in:
parent
539581aa7a
commit
4545ca3e87
1 changed files with 7 additions and 0 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue