[6950] Allow CMSG_GAMEOBJ_REPORT_USE client packet recieve by server.

This commit is contained in:
VladimirMangos 2008-12-27 02:06:59 +03:00
parent 950bfc02df
commit 871ea8a3be
4 changed files with 11 additions and 2 deletions

View file

@ -282,6 +282,14 @@ void WorldSession::HandleGameObjectUseOpcode( WorldPacket & recv_data )
obj->Use(_player);
}
void WorldSession::HandleGameobjectReportUse(WorldPacket& recvPacket)
{
uint64 guid;
recvPacket >> guid;
sLog.outDebug( "WORLD: Recvd CMSG_GAMEOBJ_REPORT_USE Message [in game guid: %u]", GUID_LOPART(guid));
}
void WorldSession::HandleCastSpellOpcode(WorldPacket& recvPacket)
{
CHECK_PACKET_SIZE(recvPacket,1+4+1);