mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 02:50:29 +00:00
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#include "Log.h"
|
|
#include "Opcodes.h"
|
|
#include "WorldPacket.h"
|
|
#include "WorldSession.h"
|
|
|
|
void WorldSession::HandleVoiceSessionEnableOpcode(WorldPacket& recvData)
|
|
{
|
|
LOG_DEBUG("network", "WORLD: CMSG_VOICE_SESSION_ENABLE");
|
|
// uint8 isVoiceEnabled, uint8 isMicrophoneEnabled
|
|
recvData.read_skip<uint8>();
|
|
recvData.read_skip<uint8>();
|
|
}
|
|
|
|
void WorldSession::HandleChannelVoiceOnOpcode(WorldPacket& /*recvData*/)
|
|
{
|
|
LOG_DEBUG("network", "WORLD: CMSG_CHANNEL_VOICE_ON");
|
|
// Enable Voice button in channel context menu
|
|
}
|
|
|
|
void WorldSession::HandleSetActiveVoiceChannel(WorldPacket& recvData)
|
|
{
|
|
LOG_DEBUG("network", "WORLD: CMSG_SET_ACTIVE_VOICE_CHANNEL");
|
|
recvData.read_skip<uint32>();
|
|
recvData.read_skip<char*>();
|
|
}
|