Temporary revert 6743 commit. I fix this patch across 1-2 days.

--HG--
branch : trunk
This commit is contained in:
n0n4m3
2009-12-24 10:20:15 +01:00
parent acdc4ca15b
commit 250a00cc1c
53 changed files with 365 additions and 354 deletions

View File

@@ -33,7 +33,6 @@
#include "NPCHandler.h"
#include "Pet.h"
#include "MapManager.h"
#include "TimeMgr.h"
void WorldSession::SendNameQueryOpcode(Player *p)
{
@@ -143,7 +142,7 @@ void WorldSession::HandleNameQueryOpcode( WorldPacket & recv_data )
void WorldSession::HandleQueryTimeOpcode( WorldPacket & /*recv_data*/ )
{
WorldPacket data( SMSG_QUERY_TIME_RESPONSE, 4+4 );
data << (uint32)sGameTime.GetGameTime();
data << (uint32)time(NULL);
data << (uint32)0;
SendPacket( &data );
}