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/PetHandler.cpp

    r2 r28  
    3131#include "Util.h" 
    3232#include "Pet.h" 
     33#include "Language.h" 
    3334 
    3435void WorldSession::HandlePetAction( WorldPacket & recv_data ) 
     
    396397    if((!ObjectMgr::IsValidPetName(name)) || (objmgr.IsReservedName(name))) 
    397398    { 
    398         SendNotification("Invalid name"); 
     399        SendNotification(LANG_PET_INVALID_NAME); 
    399400        return; 
    400401    } 
     
    416417        if(!ObjectMgr::CheckDeclinedNames(GetMainPartOfName(wname,0),declinedname)) 
    417418        { 
    418             SendNotification("Invalid name"); 
     419            SendNotification(LANG_PET_INVALID_NAME); 
    419420            return; 
    420421        }