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

[svn] * Improve some arena team related DB access
* Cache GM tickets on server startup.
* Remove unused src/game/HateMatrix.h and references.
* Better check client inventory pos data received in some client packets to
skip invalid cases

Original author: KingPin?
Date: 2008-11-10 09:04:23-06:00

Files:
1 modified

Legend:

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

    r168 r207  
    203203        recv_data >> guid; 
    204204 
    205         sLog.outDebug(  "WORLD: CMSG_CREATURE_QUERY - (%u) NO CREATURE INFO! (GUID: %u, ENTRY: %u)", uint32(GUID_LOPART(guid)), guid, entry ); 
     205        sLog.outDebug("WORLD: CMSG_CREATURE_QUERY - NO CREATURE INFO! (GUID: %u, ENTRY: %u)", 
     206            GUID_LOPART(guid), entry); 
    206207        WorldPacket data( SMSG_CREATURE_QUERY_RESPONSE, 4 ); 
    207208        data << uint32(entry | 0x80000000); 
     
    261262        recv_data >> guid; 
    262263 
    263         sLog.outDebug(  "WORLD: CMSG_GAMEOBJECT_QUERY - (%u) Missing gameobject info for (GUID: %u, ENTRY: %u)", uint32(GUID_LOPART(guid)), guid, entryID ); 
     264        sLog.outDebug(  "WORLD: CMSG_GAMEOBJECT_QUERY - Missing gameobject info for (GUID: %u, ENTRY: %u)", 
     265            GUID_LOPART(guid), entryID ); 
    264266        WorldPacket data ( SMSG_GAMEOBJECT_QUERY_RESPONSE, 4 ); 
    265267        data << uint32(entryID | 0x80000000);