Show
Ignore:
Timestamp:
11/19/08 13:24:39 (17 years ago)
Author:
yumileroy
Message:

[svn] * Updated to 6743 and 685

Moved language id used by Arena to a higher place to solve conflicts
Added the empty script folders

Original author: Neo2003
Date: 2008-10-09 08:42:22-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/ArenaTeamHandler.cpp

    r2 r28  
    2626#include "World.h" 
    2727#include "SocialMgr.h" 
     28#include "Language.h" 
    2829 
    2930void WorldSession::HandleInspectArenaStatsOpcode(WorldPacket & recv_data) 
     
    118119        //SendArenaTeamCommandResult(ARENA_TEAM_INVITE_SS,"",Invitedname,ARENA_TEAM_PLAYER_NOT_FOUND_S); 
    119120                                                            // 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()); 
    121122        return; 
    122123    } 
     
    155156        // should send an "arena team is full" or the likes message, I just don't know the proper values so... ERR_INTERNAL 
    156157//        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()); 
    158159        return; 
    159160    }