fix(Scripts/BlackwingLair): Chromaggus should cast the same affliction spell among players. (#10644)

Brood Affliction: Bronze should stun players in random intervals.
- CLoses #10584

Co-authored-by: temperrr <temperrr@users.noreply.github.com>
This commit is contained in:
UltraNix
2022-02-15 01:07:46 +01:00
committed by GitHub
parent 4720156e8e
commit 0fea133f09
2 changed files with 7 additions and 2 deletions

View File

@@ -5943,7 +5943,11 @@ void AuraEffect::HandlePeriodicTriggerSpellAuraTick(Unit* target, Unit* caster)
return;
// Brood Affliction: Bronze
case 23170:
triggerSpellId = 23171;
// Only 10% chance of triggering spell
if (roll_chance_f(10.f))
{
triggerSpellId = 23171;
}
break;
// Restoration
case 24379: