fix(Scripts/Hyjal): Anetheron cast Carrion Swarm on non player targets (#19005)

This commit is contained in:
Andrew
2024-06-03 20:25:58 -03:00
committed by GitHub
parent 8256d3cb55
commit 8ee980e4ba

View File

@@ -60,7 +60,7 @@ public:
scheduler.Schedule(20s, 28s, [this](TaskContext context)
{
if (DoCastRandomTarget(SPELL_CARRION_SWARM, 0, 60.f) == SPELL_CAST_OK)
if (DoCastRandomTarget(SPELL_CARRION_SWARM, 0, 60.f, false) == SPELL_CAST_OK)
Talk(SAY_SWARM);
context.Repeat(10s, 15s);
}).Schedule(25s, 32s, [this](TaskContext context)