aboutsummaryrefslogtreecommitdiff
path: root/src/game/BattleGroundWS.cpp
diff options
context:
space:
mode:
authorrunningnak3d <none@none>2008-10-14 16:17:28 -0500
committerrunningnak3d <none@none>2008-10-14 16:17:28 -0500
commit62409ac2a44b4af071aad765fd60e8281593aad7 (patch)
treeba5d8e22748b3bb30de7147e7a110ad50788f3ac /src/game/BattleGroundWS.cpp
parentfc6a5eae08da0c2d7a819bdc1192e3b723e0aab6 (diff)
[svn] * First public release of Trinity
* Based on MaNGOS rev 6743 and SD2-685 * All new netcode based on the ACE framework (thanks Derex) * Arenas working (thanks w12x) * Outdoor PvP working (thanks w12x) * World Game Events support added (thanks w12x) * All new build system (thanks Derex and Neo2003) * Lots of new conf options based on the ImpConfig patch (thanks Dythzer / w12x / Seline) * Small fix to WSG * Lots of other small additions and fixes --HG-- branch : trunk
Diffstat (limited to 'src/game/BattleGroundWS.cpp')
-rw-r--r--src/game/BattleGroundWS.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/BattleGroundWS.cpp b/src/game/BattleGroundWS.cpp
index a07c78d0281..12b778a5e47 100644
--- a/src/game/BattleGroundWS.cpp
+++ b/src/game/BattleGroundWS.cpp
@@ -703,13 +703,13 @@ void BattleGroundWS::FillInitialWorldStates(WorldPacket& data)
data << uint32(BG_WS_FLAG_CAPTURES_MAX) << uint32(BG_WS_MAX_TEAM_SCORE);
if (m_FlagState[BG_TEAM_HORDE] == BG_WS_FLAG_STATE_ON_PLAYER)
- data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(2);
+ data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(2);
else
- data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(1);
+ data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(1);
if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_ON_PLAYER)
- data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(2);
+ data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(2);
else
- data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(1);
+ data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(1);
}