diff options
| author | n0n4m3 <none@none> | 2009-12-18 10:14:24 +0100 |
|---|---|---|
| committer | n0n4m3 <none@none> | 2009-12-18 10:14:24 +0100 |
| commit | ed082a1830ffc4905e67619bb4094f809be5ab10 (patch) | |
| tree | 2991049a0db1682eef45ab031aec91415dbc2104 /src/game/OutdoorPvPWG.cpp | |
| parent | db29bc3ae58bb1c587c9f8de2233910ac27ff776 (diff) | |
Fix wintergrasp timer
--HG--
branch : trunk
Diffstat (limited to 'src/game/OutdoorPvPWG.cpp')
| -rw-r--r-- | src/game/OutdoorPvPWG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/OutdoorPvPWG.cpp b/src/game/OutdoorPvPWG.cpp index 94389f1c812..27a9a026f79 100644 --- a/src/game/OutdoorPvPWG.cpp +++ b/src/game/OutdoorPvPWG.cpp @@ -1215,11 +1215,11 @@ void OutdoorPvPWG::UpdateTenacityStack() void OutdoorPvPWG::UpdateClockDigit(uint32 &timer, uint32 digit, uint32 mod) { uint32 value = timer%mod; - timer /= mod; if (m_clock[digit] != value) { m_clock[digit] = value; SendUpdateWorldState(ClockWorldState[digit], (timer + time(NULL))); + sWorld.SetWintergrapsTimer(timer + time(NULL), digit); } } |
