fix(Scripts/SerpentshrineCavern): fix Hydross not casting Water Tomb … (#18003)
fix(Scripts/SerpentshrineCavern): fix Hydross not casting Water Tomb & Vile Sludge
This commit is contained in:
parent
a84a56536d
commit
00ee7bd920
1 changed files with 2 additions and 2 deletions
|
|
@ -165,7 +165,7 @@ struct boss_hydross_the_unstable : public BossAI
|
|||
DoCastSelf(SPELL_MARK_OF_CORRUPTION6);
|
||||
}).Schedule(12150ms, GROUP_ABILITIES, [this](TaskContext context)
|
||||
{
|
||||
DoCastRandomTarget(SPELL_VILE_SLUDGE, true);
|
||||
DoCastRandomTarget(SPELL_VILE_SLUDGE, 0, 0.0f, true, true);
|
||||
context.Repeat(9700ms, 32800ms);
|
||||
});
|
||||
}
|
||||
|
|
@ -196,7 +196,7 @@ struct boss_hydross_the_unstable : public BossAI
|
|||
DoCastSelf(SPELL_MARK_OF_HYDROSS6);
|
||||
}).Schedule(12150ms, GROUP_ABILITIES, [this](TaskContext context)
|
||||
{
|
||||
DoCastRandomTarget(SPELL_WATER_TOMB, true);
|
||||
DoCastRandomTarget(SPELL_WATER_TOMB, 0, 0.0f, true, true);
|
||||
context.Repeat(9700ms, 32800ms);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue