Changeset 28 for trunk/src/game/ArenaTeamHandler.cpp
- Timestamp:
- 11/19/08 13:24:39 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/ArenaTeamHandler.cpp
r2 r28 26 26 #include "World.h" 27 27 #include "SocialMgr.h" 28 #include "Language.h" 28 29 29 30 void WorldSession::HandleInspectArenaStatsOpcode(WorldPacket & recv_data) … … 118 119 //SendArenaTeamCommandResult(ARENA_TEAM_INVITE_SS,"",Invitedname,ARENA_TEAM_PLAYER_NOT_FOUND_S); 119 120 // can't find related opcode 120 SendNotification( "%s is not high enough level to join your team", player->GetName());121 SendNotification(LANG_HIS_ARENA_LEVEL_REQ_ERROR, player->GetName()); 121 122 return; 122 123 } … … 155 156 // should send an "arena team is full" or the likes message, I just don't know the proper values so... ERR_INTERNAL 156 157 // SendArenaTeamCommandResult(ERR_ARENA_TEAM_INVITE_SS, "", "", ERR_ARENA_TEAM_INTERNAL); 157 SendNotification( "Your arena team is full, %s cannot join it.", player->GetName());158 SendNotification(LANG_YOUR_ARENA_TEAM_FULL, player->GetName()); 158 159 return; 159 160 }