From fc35cf0d3b965011c706e863e5694b388253295b Mon Sep 17 00:00:00 2001 From: VladimirMangos Date: Thu, 2 Dec 2010 00:51:28 +0300 Subject: [PATCH] [10806] Fixed typo in m_PrematureCountDownTimer initila value set. Just fo note: in fact initial value assign not used because m_PrematureCountDownTimer always init and used only in case m_PrematureCountDonw == true --- src/game/BattleGround.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/BattleGround.cpp b/src/game/BattleGround.cpp index 3b552d30c..75cb1b244 100644 --- a/src/game/BattleGround.cpp +++ b/src/game/BattleGround.cpp @@ -263,7 +263,7 @@ BattleGround::BattleGround() m_TeamScores[BG_TEAM_HORDE] = 0; m_PrematureCountDown = false; - m_PrematureCountDown = 0; + m_PrematureCountDownTimer = 0; m_StartDelayTimes[BG_STARTING_EVENT_FIRST] = BG_START_DELAY_2M; m_StartDelayTimes[BG_STARTING_EVENT_SECOND] = BG_START_DELAY_1M; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index dbb05e17f..bf04c4820 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 "10805" + #define REVISION_NR "10806" #endif // __REVISION_NR_H__