aboutsummaryrefslogtreecommitdiff
path: root/src/game/VoiceChatHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/VoiceChatHandler.cpp')
-rw-r--r--src/game/VoiceChatHandler.cpp12
1 files changed, 6 insertions, 6 deletions
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();
}