From 24251bc061a9ed0cc00c5ed9fa0bd3732ea27d83 Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Thu, 20 Jun 2024 01:48:37 -0300 Subject: [PATCH] fix(Scripts/Hyjal): Fix wave count not showing for Rage Winterchill waves fix(Scripts/Hyjal): Fix wave count not showing for Rage Winterchill waves --- .../CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp index 3e518ecca..031f98efb 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp @@ -530,7 +530,7 @@ public: } context.Repeat(timerptr[_currentWave]); - if (++_currentWave < maxWaves && _bossWave) + if (++_currentWave < maxWaves && _bossWave != TO_BE_DECIDED) { DoUpdateWorldState(WORLD_STATE_WAVES, _currentWave); DoUpdateWorldState(WORLD_STATE_ENEMY, 1);