diff options
author | Anubisss <none@none> | 2009-05-08 23:13:15 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2009-05-08 23:13:15 +0200 |
commit | ca370ddbbecace13e8836366fbb743000592d232 (patch) | |
tree | aaacf6117c350359e94a09c1d294f7e48d54b7a5 /src | |
parent | 51b46c53b84295658eb1197657e350c7a7a34271 (diff) |
*Correct elapsed time in BG/Arena by Trojan. Thank you.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/BattleGround.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/BattleGround.cpp b/src/game/BattleGround.cpp index c0ec88b78fb..6c8185b97d2 100644 --- a/src/game/BattleGround.cpp +++ b/src/game/BattleGround.cpp @@ -126,7 +126,9 @@ void BattleGround::Update(time_t diff) //BG is empty return; - WorldPacket data; + m_StartTime += diff; + + // WorldPacket data; if(GetRemovedPlayersSize()) { |