diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-04-01 01:44:10 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2015-04-01 01:44:10 +0200 |
commit | 5389180778f2ac25da421fea698a1657752c5731 (patch) | |
tree | 112b18a3505b90fdbdf0216fc5d65f8486c1b995 /src/server/game/Battlegrounds/ArenaTeam.cpp | |
parent | ca9781f94ea67dec6f07e347784490fa2dc1ce19 (diff) |
Core/PacketIO: Updated all client opcode values
Diffstat (limited to 'src/server/game/Battlegrounds/ArenaTeam.cpp')
-rw-r--r-- | src/server/game/Battlegrounds/ArenaTeam.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/server/game/Battlegrounds/ArenaTeam.cpp b/src/server/game/Battlegrounds/ArenaTeam.cpp index e2a572b6dc7..dc3b5dd81ee 100644 --- a/src/server/game/Battlegrounds/ArenaTeam.cpp +++ b/src/server/game/Battlegrounds/ArenaTeam.cpp @@ -468,16 +468,16 @@ void ArenaTeam::Inspect(WorldSession* session, ObjectGuid guid) if (!member) return; - WorldPacket data(MSG_INSPECT_ARENA_TEAMS, 8+1+4*6); - data << guid; // player guid - data << uint8(GetSlot()); // slot (0...2) - data << uint32(GetId()); // arena team id - data << uint32(Stats.Rating); // rating - data << uint32(Stats.SeasonGames); // season played - data << uint32(Stats.SeasonWins); // season wins - data << uint32(member->SeasonGames); // played (count of all games, that the inspected member participated...) - data << uint32(member->PersonalRating); // personal rating - session->SendPacket(&data); + //WorldPacket data(MSG_INSPECT_ARENA_TEAMS, 8+1+4*6); + //data << guid; // player guid + //data << uint8(GetSlot()); // slot (0...2) + //data << uint32(GetId()); // arena team id + //data << uint32(Stats.Rating); // rating + //data << uint32(Stats.SeasonGames); // season played + //data << uint32(Stats.SeasonWins); // season wins + //data << uint32(member->SeasonGames); // played (count of all games, that the inspected member participated...) + //data << uint32(member->PersonalRating); // personal rating + //session->SendPacket(&data); } void ArenaTeamMember::ModifyPersonalRating(Player* player, int32 mod, uint32 type) |