mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[8804] changed some unhandled opcode-errors to debug
with this i also introduced a new status for opcodes STATUS_UNHANDLED not sure if i realy found all unhanddled opcodes those are all based on empircal analysis of our serverlog
This commit is contained in:
parent
f8ed87c45e
commit
fb6f792cf3
4 changed files with 13 additions and 7 deletions
|
|
@ -244,6 +244,11 @@ bool WorldSession::Update(uint32 /*diff*/)
|
|||
LookupOpcodeName(packet->GetOpcode()),
|
||||
packet->GetOpcode());
|
||||
break;
|
||||
case STATUS_UNHANDLED:
|
||||
sLog.outDebug("SESSION: received not handled opcode %s (0x%.4X)",
|
||||
LookupOpcodeName(packet->GetOpcode()),
|
||||
packet->GetOpcode());
|
||||
break;
|
||||
}
|
||||
}
|
||||
catch(ByteBufferException &)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue