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

Closes #21660

(cherry picked from commit e1aafddc2e)
This commit is contained in:
Keader
2019-03-03 23:19:03 -03:00
committed by Shauren
parent 7a2ef47495
commit 02db59806a

View File

@@ -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);
}
};