aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeader <keader.android@gmail.com>2019-03-03 23:19:03 -0300
committerShauren <shauren.trinity@gmail.com>2021-11-24 20:35:17 +0100
commit02db59806acf7c8d0911f8fe4daccb54f9469c4c (patch)
treef853b2d3b1ad52f53b58eadc42e33cfb32495d78
parent7a2ef474952e6d57f4d8282a8cd3d068dcf3f38c (diff)
Scripts/Trial of the Crusader: Fixed Slime Pool visual effect
Closes #21660 (cherry picked from commit e1aafddc2e90c01d0e2511518d7c23ac6baca935)
-rw-r--r--src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp
index f220af343c6..951ef9e1e33 100644
--- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp
+++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp
@@ -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);
}
};