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

[svn] *Implement new player conditions CONDITION_NO_AURA, CONDITION_ACTIVE_EVENT
* Default behaviour of pets for creatures changed to REACT_DEFENSIVE
* Disallowed sending wrapped items as COD
* Prevent loading and saving single target auras for pet in same way as already implemented for player
* Correctly limit use some flask types to zones.
* Fixed extracting common.MPQ under *nix
* Many small xleanups and fixes.
** mangos merge rev.

TEST REV so be careful of creepy crawly bugs!

Original author: KingPin?
Date: 2008-11-02 16:53:46-06:00

Files:
1 modified

Legend:

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

    r112 r149  
    8787} 
    8888 
    89 bool ChatHandler::HandleInfoCommand(const char* /*args*/) 
     89bool ChatHandler::HandleServerInfoCommand(const char* /*args*/) 
    9090{ 
    9191    uint32 activeClientsNum = sWorld.GetActiveSessionCount(); 
     
    9595    std::string str = secsToTimeString(sWorld.GetUptime()); 
    9696 
    97     PSendSysMessage(_FULLVERSION); 
     97    PSendSysMessage(_FULLVERSION); //char const* full; 
     98    //if(m_session) 
     99    //    full = _FULLVERSION(REVISION_DATE,REVISION_TIME,"|cffffffff|Hurl:" REVISION_ID "|h" REVISION_ID "|h|r"); 
     100    //else 
     101    //    full = _FULLVERSION(REVISION_DATE,REVISION_TIME,REVISION_ID); 
     102 
     103    //SendSysMessage(full); 
     104    //PSendSysMessage(LANG_USING_SCRIPT_LIB,sWorld.GetScriptsVersion()); 
     105    //PSendSysMessage(LANG_USING_WORLD_DB,sWorld.GetDBVersion()); 
    98106    PSendSysMessage(LANG_CONNECTED_USERS, activeClientsNum, maxActiveClientsNum, queuedClientsNum, maxQueuedClientsNum); 
    99107    PSendSysMessage(LANG_UPTIME, str.c_str());