From 5ed5513ca82712a6e3691add2c9a0f005d80426f Mon Sep 17 00:00:00 2001 From: megamage Date: Sun, 31 May 2009 15:56:51 -0500 Subject: Mangos [7911]. Author: tomrus88 Very big patch. May cause bugs. --HG-- branch : trunk --- src/game/VoiceChatHandler.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/game/VoiceChatHandler.cpp') diff --git a/src/game/VoiceChatHandler.cpp b/src/game/VoiceChatHandler.cpp index 8e787549e33..0aef129a010 100644 --- a/src/game/VoiceChatHandler.cpp +++ b/src/game/VoiceChatHandler.cpp @@ -24,23 +24,23 @@ #include "Opcodes.h" #include "Log.h" -void WorldSession::HandleVoiceSettingsOpcode( WorldPacket & recv_data ) +void WorldSession::HandleVoiceSessionEnableOpcode( WorldPacket & recv_data ) { - sLog.outDebug("WORLD: CMSG_VOICE_SETTINGS"); + sLog.outDebug("WORLD: CMSG_VOICE_SESSION_ENABLE"); // uint8 isVoiceEnabled, uint8 isMicrophoneEnabled recv_data.hexlike(); } -void WorldSession::HandleChannelEnableVoiceOpcode( WorldPacket & recv_data ) +void WorldSession::HandleChannelVoiceOnOpcode( WorldPacket & recv_data ) { - sLog.outDebug("WORLD: CMSG_CHANNEL_ENABLE_VOICE"); + sLog.outDebug("WORLD: CMSG_CHANNEL_VOICE_ON"); // Enable Voice button in channel context menu recv_data.hexlike(); } -void WorldSession::HandleChannelVoiceChatQuery( WorldPacket & recv_data ) +void WorldSession::HandleSetActiveVoiceChannel( WorldPacket & recv_data ) { - sLog.outDebug("WORLD: CMSG_CHANNEL_VOICE_CHAT_QUERY"); + sLog.outDebug("WORLD: CMSG_SET_ACTIVE_VOICE_CHANNEL"); // uint32, string recv_data.hexlike(); } -- cgit v1.2.3