diff --git a/src/game/BattleGroundWS.cpp b/src/game/BattleGroundWS.cpp index 9a121e0da..88d25a72a 100644 --- a/src/game/BattleGroundWS.cpp +++ b/src/game/BattleGroundWS.cpp @@ -656,6 +656,6 @@ void BattleGroundWS::FillInitialWorldStates(WorldPacket& data, uint32& count) else FillInitialWorldState(data, count, BG_WS_FLAG_STATE_ALLIANCE, 1); - FillInitialWorldState(data, count, BG_WS_UNK1, 1); + FillInitialWorldState(data, count, BG_WS_TIME_ENABLED, 1); FillInitialWorldState(data, count, BG_WS_TIME_REMAINING, GetRemainingTimeInMinutes()); } diff --git a/src/game/BattleGroundWS.h b/src/game/BattleGroundWS.h index e6766b628..7fe71e060 100644 --- a/src/game/BattleGroundWS.h +++ b/src/game/BattleGroundWS.h @@ -55,7 +55,7 @@ enum BG_WS_WorldStates BG_WS_FLAG_CAPTURES_MAX = 1601, BG_WS_FLAG_STATE_HORDE = 2338, BG_WS_FLAG_STATE_ALLIANCE = 2339, - BG_WS_UNK1 = 4247, // Show time limit? + BG_WS_TIME_ENABLED = 4247, BG_WS_TIME_REMAINING = 4248 }; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 8c74a8f6e..ce9085bc0 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9921" + #define REVISION_NR "9922" #endif // __REVISION_NR_H__