[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
This commit is contained in:
VladimirMangos 2010-12-02 00:51:28 +03:00
parent 29f7f05414
commit fc35cf0d3b
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10805"
#define REVISION_NR "10806"
#endif // __REVISION_NR_H__