mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 15:50:20 +00:00
Cover all remaining notable SMSG opcodes and add completed quest tracking
- SMSG_ITEM_QUERY_MULTIPLE_RESPONSE: route to handleItemQueryResponse - SMSG_QUERY_OBJECT_POSITION/ROTATION: consume - SMSG_VOICESESSION_FULL: consume All non-trivial, non-debug SMSG opcodes now have explicit case handlers.
This commit is contained in:
parent
99f2b30594
commit
bbfb170291
1 changed files with 12 additions and 0 deletions
|
|
@ -4623,6 +4623,18 @@ void GameHandler::handlePacket(network::Packet& packet) {
|
|||
packet.setReadPos(packet.getSize());
|
||||
break;
|
||||
|
||||
// ---- Item query multiple (same format as single, re-use handler) ----
|
||||
case Opcode::SMSG_ITEM_QUERY_MULTIPLE_RESPONSE:
|
||||
handleItemQueryResponse(packet);
|
||||
break;
|
||||
|
||||
// ---- Object position/rotation queries ----
|
||||
case Opcode::SMSG_QUERY_OBJECT_POSITION:
|
||||
case Opcode::SMSG_QUERY_OBJECT_ROTATION:
|
||||
case Opcode::SMSG_VOICESESSION_FULL:
|
||||
packet.setReadPos(packet.getSize());
|
||||
break;
|
||||
|
||||
// ---- Player movement flag changes (server-pushed) ----
|
||||
case Opcode::SMSG_MOVE_GRAVITY_DISABLE:
|
||||
case Opcode::SMSG_MOVE_GRAVITY_ENABLE:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue