[12732] Implemented CMSG_OBJECT_UPDATE_FAILED

This commit is contained in:
sanctum32 2013-11-18 05:04:55 +02:00 committed by Antz
parent f414c377df
commit a5d17dbf86
5 changed files with 18 additions and 2 deletions

View file

@ -1596,3 +1596,15 @@ void WorldSession::HandleRequestHotfix(WorldPacket& recv_data)
}
}
}
void WorldSession::HandleObjectUpdateFailedOpcode(WorldPacket& recv_data)
{
ObjectGuid guid;
recv_data.ReadGuidMask<6, 7, 4, 0, 1, 5, 3, 2>(guid);
recv_data.ReadGuidBytes<6, 7, 2, 3, 1, 4, 0, 5>(guid);
DEBUG_LOG("WORLD: Received CMSG_OBJECT_UPDATE_FAILED from %s (%u) guid: %s",
GetPlayerName(), GetAccountId(), guid.GetString().c_str());
}