diff options
author | n0n4m3 <none@none> | 2010-04-11 11:08:26 +0400 |
---|---|---|
committer | n0n4m3 <none@none> | 2010-04-11 11:08:26 +0400 |
commit | 36e13c1d1c615d89c1e18add73411c0525ecbf08 (patch) | |
tree | 45bf3fa7314fd44272acb25a6da8015d53e47ab2 /src/game/ArenaTeamHandler.cpp | |
parent | 93f7e2796c62f8838764ed9f0a33b40f8c30433a (diff) |
Not use PLAYER_FIELD_ARENA_TEAM_INFO_1_1 directly. Big thx to TOM_RUS.
--HG--
branch : trunk
Diffstat (limited to 'src/game/ArenaTeamHandler.cpp')
-rw-r--r-- | src/game/ArenaTeamHandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/ArenaTeamHandler.cpp b/src/game/ArenaTeamHandler.cpp index ac35acc0fac..3a9a14524f9 100644 --- a/src/game/ArenaTeamHandler.cpp +++ b/src/game/ArenaTeamHandler.cpp @@ -332,10 +332,10 @@ void WorldSession::HandleArenaTeamLeaderOpcode(WorldPacket & recv_data) void WorldSession::SendArenaTeamCommandResult(uint32 team_action, const std::string& team, const std::string& player, uint32 error_id) { WorldPacket data(SMSG_ARENA_TEAM_COMMAND_RESULT, 4+team.length()+1+player.length()+1+4); - data << team_action; + data << uint32(team_action); data << team; data << player; - data << error_id; + data << uint32(error_id); SendPacket(&data); } |