Core/PacketIO: Removed PacketFilter::DropHighBytes

This commit is contained in:
Shauren
2014-10-11 23:40:51 +02:00
parent cbabfe9920
commit 665b1daab7
3 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -162,7 +162,7 @@ bool WorldSocket::ReadDataHandler()
{
ClientPktHeader* header = reinterpret_cast<ClientPktHeader*>(_headerBuffer.GetReadPointer());
Opcodes opcode = PacketFilter::DropHighBytes(Opcodes(header->cmd));
Opcodes opcode(header->cmd);
std::string opcodeName = GetOpcodeNameForLogging(opcode);