Show
Ignore:
Timestamp:
11/19/08 13:29:12 (17 years ago)
Author:
yumileroy
Message:

[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

Original author: runningnak3d
Date: 2008-10-14 16:17:28-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/BattleGroundWS.cpp

    r44 r49  
    704704 
    705705    if (m_FlagState[BG_TEAM_HORDE] == BG_WS_FLAG_STATE_ON_PLAYER) 
     706        data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(2); 
     707    else 
     708        data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(1); 
     709 
     710    if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_ON_PLAYER) 
    706711        data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(2); 
    707712    else 
    708713        data << uint32(BG_WS_FLAG_STATE_HORDE) << uint32(1); 
    709714 
    710     if (m_FlagState[BG_TEAM_ALLIANCE] == BG_WS_FLAG_STATE_ON_PLAYER) 
    711         data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(2); 
    712     else 
    713         data << uint32(BG_WS_FLAG_STATE_ALLIANCE) << uint32(1); 
    714  
    715 } 
     715}