diff options
author | megamage <none@none> | 2009-02-13 20:04:09 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-02-13 20:04:09 -0600 |
commit | 7305f5784605c09a5e9a6afbca031d02b54ec5a1 (patch) | |
tree | 6e2ee9f59fdec33097d6e6699f22a5b48b3a871c /src | |
parent | edbd3b637e79f030e303bbd89e850d7ca7344f9f (diff) |
Fixed arena related client crash Author: tomrus88
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/BattleGroundMgr.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/game/BattleGroundMgr.cpp b/src/game/BattleGroundMgr.cpp index 4874da55028..4993e1bf3e2 100644 --- a/src/game/BattleGroundMgr.cpp +++ b/src/game/BattleGroundMgr.cpp @@ -1224,7 +1224,6 @@ void BattleGroundMgr::BuildPvpLogDataPacket(WorldPacket *data, BattleGround *bg) { *data << uint32(bg->m_ArenaTeamRatingChanges[i]); *data << uint32(3999); // huge thanks for TOM_RUS for this! - *data << uint32(0); // unknown - new in 3.0.3 sLog.outDebug("rating change: %d", bg->m_ArenaTeamRatingChanges[i]); } for(int i = 1; i >= 0; --i) @@ -1233,7 +1232,7 @@ void BattleGroundMgr::BuildPvpLogDataPacket(WorldPacket *data, BattleGround *bg) ArenaTeam * at = objmgr.GetArenaTeamById(at_id); if(at) *data << at->GetName(); - else//*/ + else *data << (uint8)0; } } |