From 712e4af5c2c9826fc604aaea5e49073a4165678e Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Sat, 4 Jan 2025 15:51:54 +0100 Subject: [PATCH] fix (Boss/Script) Increase Spell Hatch Egg cooldown by one second. (#21090) --- src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp index 238e94e1e..04b09dca0 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp @@ -401,7 +401,7 @@ struct npc_janalai_hatcher : public ScriptedAI ++_repeatCount; if (me->FindNearestCreature(NPC_EGG, 100.0f)) - context.Repeat(4s); + context.Repeat(5s); else { if (WorldObject* summoner = GetSummoner())