diff options
author | megamage <none@none> | 2009-07-31 11:36:02 +0800 |
---|---|---|
committer | megamage <none@none> | 2009-07-31 11:36:02 +0800 |
commit | 70e31cce3fc41cc5ebfbc9f0a69a1757ea4ec42a (patch) | |
tree | a35de670296d3fa287bfa88d457d6eed237c1e73 /src/game/BattleGroundWS.h | |
parent | d96642c92fbeab49ae613a78c3fb578934288d2f (diff) |
[8276] Implement achievment ACHIEVEMENT_CRITERIA_TYPE_WIN_BG Author: VladimirMangos
* including new achievement createria data type ACHIEVEMENT_CRITERIA_DATA_TYPE_BG_LOSS_TEAM_SCORE
Note: Some achivement creteria for success need data in `achievement_criteria_data`
--HG--
branch : trunk
Diffstat (limited to 'src/game/BattleGroundWS.h')
-rw-r--r-- | src/game/BattleGroundWS.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/game/BattleGroundWS.h b/src/game/BattleGroundWS.h index a404b36d7e3..16631afecdc 100644 --- a/src/game/BattleGroundWS.h +++ b/src/game/BattleGroundWS.h @@ -200,7 +200,6 @@ class BattleGroundWS : public BattleGround void AddPoint(uint32 TeamID, uint32 Points = 1) { m_TeamScores[GetTeamIndexByTeamId(TeamID)] += Points; } void SetTeamPoint(uint32 TeamID, uint32 Points = 0) { m_TeamScores[GetTeamIndexByTeamId(TeamID)] = Points; } void RemovePoint(uint32 TeamID, uint32 Points = 1) { m_TeamScores[GetTeamIndexByTeamId(TeamID)] -= Points; } - private: uint64 m_FlagKeepers[2]; // 0 - alliance, 1 - horde uint64 m_DroppedFlagGUID[2]; |