aboutsummaryrefslogtreecommitdiff
path: root/src/game/ArenaTeamHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/ArenaTeamHandler.cpp')
-rw-r--r--src/game/ArenaTeamHandler.cpp4
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);
}