Scripts/Trial of the Crusader: Fixed Slime Pool visual effect

Closes #21660

(cherry picked from commit e1aafddc2e90c01d0e2511518d7c23ac6baca935)
This commit is contained in:
Keader
2021-11-24 20:35:17 +01:00
committed by Shauren
parent 7a2ef47495
commit 02db59806a
@@ -910,8 +910,11 @@ struct npc_jormungars_slime_pool : public ScriptedAI
void Reset() override
{
DoCastSelf(SPELL_SLIME_POOL_EFFECT, true);
DoCastSelf(SPELL_PACIFY_SELF, true);
me->m_Events.AddEventAtOffset([this]()
{
DoCastSelf(SPELL_SLIME_POOL_EFFECT, true);
DoCastSelf(SPELL_PACIFY_SELF, true);
}, 1s);
}
};