aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Server/Packets
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2015-03-29 00:45:04 +0100
committerVincent-Michael <Vincent_Michael@gmx.de>2015-03-29 00:45:26 +0100
commitcf3df0a396686174c4d548b0661556ef704d54fa (patch)
tree25eda31c3a8d9a0f33acb1a4d2262beb055210a9 /src/server/game/Server/Packets
parente2c393673d349af9b391210a97c220c2423a9673 (diff)
Core/PacketIO: Enabled some others and channel opcodes for 6.1.2
Diffstat (limited to 'src/server/game/Server/Packets')
-rw-r--r--src/server/game/Server/Packets/ChannelPackets.cpp20
-rw-r--r--src/server/game/Server/Packets/ChannelPackets.h22
2 files changed, 21 insertions, 21 deletions
diff --git a/src/server/game/Server/Packets/ChannelPackets.cpp b/src/server/game/Server/Packets/ChannelPackets.cpp
index 9ee652fac06..92226981df6 100644
--- a/src/server/game/Server/Packets/ChannelPackets.cpp
+++ b/src/server/game/Server/Packets/ChannelPackets.cpp
@@ -94,12 +94,12 @@ void WorldPackets::Channel::ChannelPlayerCommand::Read()
case CMSG_CHANNEL_MUTE:
case CMSG_CHANNEL_SET_OWNER:
case CMSG_CHANNEL_SILENCE_ALL:
- //case CMSG_CHANNEL_SILENCE_VOICE:
+ case CMSG_CHANNEL_SILENCE_VOICE:
case CMSG_CHANNEL_UNBAN:
case CMSG_CHANNEL_UNMODERATOR:
case CMSG_CHANNEL_UNMUTE:
- //case CMSG_CHANNEL_UNSILENCE_ALL:
- //case CMSG_CHANNEL_UNSILENCE_VOICE:
+ case CMSG_CHANNEL_UNSILENCE_ALL:
+ case CMSG_CHANNEL_UNSILENCE_VOICE:
{
uint32 channelNameLength = _worldPacket.ReadBits(7);
uint32 nameLength = _worldPacket.ReadBits(9);
@@ -107,14 +107,14 @@ void WorldPackets::Channel::ChannelPlayerCommand::Read()
Name = _worldPacket.ReadString(nameLength);
break;
}
- //case CMSG_CHANNEL_ANNOUNCEMENTS:
- //case CMSG_CHANNEL_DECLINE_INVITE:
- //case CMSG_CHANNEL_DISPLAY_LIST:
- //case CMSG_CHANNEL_LIST:
+ case CMSG_CHANNEL_ANNOUNCEMENTS:
+ case CMSG_CHANNEL_DECLINE_INVITE:
+ case CMSG_CHANNEL_DISPLAY_LIST:
+ case CMSG_CHANNEL_LIST:
//case CMSG_CHANNEL_MODERATE:
- //case CMSG_CHANNEL_OWNER:
- //case CMSG_CHANNEL_VOICE_OFF:
- //case CMSG_CHANNEL_VOICE_ON:
+ case CMSG_CHANNEL_OWNER:
+ case CMSG_CHANNEL_VOICE_OFF:
+ case CMSG_CHANNEL_VOICE_ON:
{
ChannelName = _worldPacket.ReadString(_worldPacket.ReadBits(7));
break;
diff --git a/src/server/game/Server/Packets/ChannelPackets.h b/src/server/game/Server/Packets/ChannelPackets.h
index 6948628c6c0..14fbac84cf9 100644
--- a/src/server/game/Server/Packets/ChannelPackets.h
+++ b/src/server/game/Server/Packets/ChannelPackets.h
@@ -104,28 +104,28 @@ namespace WorldPackets
{
default:
ASSERT(false);
- //case CMSG_CHANNEL_ANNOUNCEMENTS:
+ case CMSG_CHANNEL_ANNOUNCEMENTS:
case CMSG_CHANNEL_BAN:
- //case CMSG_CHANNEL_DECLINE_INVITE:
- //case CMSG_CHANNEL_DISPLAY_LIST:
+ case CMSG_CHANNEL_DECLINE_INVITE:
+ case CMSG_CHANNEL_DISPLAY_LIST:
case CMSG_CHANNEL_INVITE:
case CMSG_CHANNEL_KICK:
- //case CMSG_CHANNEL_LIST:
+ case CMSG_CHANNEL_LIST:
//case CMSG_CHANNEL_MODERATE:
case CMSG_CHANNEL_MODERATOR:
case CMSG_CHANNEL_MUTE:
- //case CMSG_CHANNEL_OWNER:
+ case CMSG_CHANNEL_OWNER:
case CMSG_CHANNEL_PASSWORD:
case CMSG_CHANNEL_SET_OWNER:
- //case CMSG_CHANNEL_SILENCE_ALL:
- //case CMSG_CHANNEL_SILENCE_VOICE:
+ case CMSG_CHANNEL_SILENCE_ALL:
+ case CMSG_CHANNEL_SILENCE_VOICE:
case CMSG_CHANNEL_UNBAN:
case CMSG_CHANNEL_UNMODERATOR:
case CMSG_CHANNEL_UNMUTE:
- //case CMSG_CHANNEL_UNSILENCE_ALL:
- //case CMSG_CHANNEL_UNSILENCE_VOICE:
- //case CMSG_CHANNEL_VOICE_OFF:
- //case CMSG_CHANNEL_VOICE_ON:
+ case CMSG_CHANNEL_UNSILENCE_ALL:
+ case CMSG_CHANNEL_UNSILENCE_VOICE:
+ case CMSG_CHANNEL_VOICE_OFF:
+ case CMSG_CHANNEL_VOICE_ON:
break;
}
}