mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 09:33:51 +00:00
Fix name query parsing for Classic/TBC
This commit is contained in:
parent
bf39c0b900
commit
6af9d6ba2d
3 changed files with 86 additions and 2 deletions
|
|
@ -102,6 +102,11 @@ public:
|
|||
return MessageChatParser::parse(packet, data);
|
||||
}
|
||||
|
||||
/** Parse SMSG_NAME_QUERY_RESPONSE */
|
||||
virtual bool parseNameQueryResponse(network::Packet& packet, NameQueryResponseData& data) {
|
||||
return NameQueryResponseParser::parse(packet, data);
|
||||
}
|
||||
|
||||
// --- Destroy Object ---
|
||||
|
||||
/** Parse SMSG_DESTROY_OBJECT */
|
||||
|
|
@ -158,6 +163,7 @@ public:
|
|||
bool parseUpdateObject(network::Packet& packet, UpdateObjectData& data) override;
|
||||
bool parseCharEnum(network::Packet& packet, CharEnumResponse& response) override;
|
||||
bool parseAuraUpdate(network::Packet& packet, AuraUpdateData& data, bool isAll = false) override;
|
||||
bool parseNameQueryResponse(network::Packet& packet, NameQueryResponseData& data) override;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue