diff options
author | thenecromancer <none@none> | 2010-01-30 15:35:34 +0100 |
---|---|---|
committer | thenecromancer <none@none> | 2010-01-30 15:35:34 +0100 |
commit | a120426f9fa73d6f3739528266040040f8404c58 (patch) | |
tree | 5489b0b3058b2488397b3c3285e543fd2746c244 /src/game/BattleGroundWS.h | |
parent | 168d315882d91cc2c62c427fbadf43134b10da32 (diff) |
Add support to time remaining display in WSG
--HG--
branch : trunk
Diffstat (limited to 'src/game/BattleGroundWS.h')
-rw-r--r-- | src/game/BattleGroundWS.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/BattleGroundWS.h b/src/game/BattleGroundWS.h index 57e4e047192..2488de1f7c2 100644 --- a/src/game/BattleGroundWS.h +++ b/src/game/BattleGroundWS.h @@ -62,7 +62,9 @@ enum BG_WS_WorldStates BG_WS_FLAG_CAPTURES_HORDE = 1582, BG_WS_FLAG_CAPTURES_MAX = 1601, BG_WS_FLAG_STATE_HORDE = 2338, - BG_WS_FLAG_STATE_ALLIANCE = 2339 + BG_WS_FLAG_STATE_ALLIANCE = 2339, + BG_WS_STATE_TIMER = 4248, + BG_WS_STATE_TIMER_ACTIVE = 4247 }; enum BG_WS_ObjectTypes @@ -215,6 +217,7 @@ class BattleGroundWS : public BattleGround int32 m_FlagSpellForceTimer; bool m_BothFlagsKept; uint8 m_FlagDebuffState; // 0 - no debuffs, 1 - focused assault, 2 - brutal assault + uint8 m_minutesElapsed; }; #endif |