diff options
author | Spp <spp@jorge.gr> | 2011-09-29 13:25:37 +0200 |
---|---|---|
committer | Spp <spp@jorge.gr> | 2011-09-29 13:25:37 +0200 |
commit | 18aad847e1d47295c0967bf6a85e9a89283ef958 (patch) | |
tree | b09c1feec1a5f006edb49ae10f5bdc0fc095ba22 /src | |
parent | b16d2245bbd374805d15cdca585e8b42bf139605 (diff) |
Fix a typo in 8b820baa73
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Battlegrounds/Zones/BattlegroundWS.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundWS.h b/src/server/game/Battlegrounds/Zones/BattlegroundWS.h index 88c0766c461..386cc6945e8 100755 --- a/src/server/game/Battlegrounds/Zones/BattlegroundWS.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundWS.h @@ -171,7 +171,7 @@ class BattlegroundWS : public Battleground uint64 GetFlagPickerGUID(int32 team) const { if (team == BG_TEAM_ALLIANCE || team == BG_TEAM_HORDE) - return m_FlagKeepers[BG_TEAM_ALLIANCE]; + return m_FlagKeepers[team]; return 0; } void SetAllianceFlagPicker(uint64 guid) { m_FlagKeepers[BG_TEAM_ALLIANCE] = guid; } |