fix(Scripts/TempleofAhnQiraj): Skeram's Arcane Explosion and Tru Fu… (#12736)

fix(Scripts/Temple of AhnQiraj): Skeram's Arcane Explosion and Tru Fullfilment should have cast times.

Fixes #12715
This commit is contained in:
UltraNix
2022-08-21 16:00:10 +02:00
committed by GitHub
parent 787f0ae204
commit 24f538a636

View File

@@ -142,13 +142,13 @@ struct boss_skeram : public BossAI
switch (eventId)
{
case EVENT_ARCANE_EXPLOSION:
DoCastAOE(SPELL_ARCANE_EXPLOSION, true);
DoCastAOE(SPELL_ARCANE_EXPLOSION, false);
events.ScheduleEvent(EVENT_ARCANE_EXPLOSION, 8s, 18s);
break;
case EVENT_FULLFILMENT:
/// @todo For some weird reason boss does not cast this
// Spell actually works, tested in duel
DoCast(SelectTarget(SelectTargetMethod::Random, 0, 0.0f, true), SPELL_TRUE_FULFILLMENT, true);
DoCast(SelectTarget(SelectTargetMethod::Random, 0, 0.0f, true), SPELL_TRUE_FULFILLMENT, false);
events.ScheduleEvent(EVENT_FULLFILMENT, 20s, 30s);
break;
case EVENT_BLINK: