mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 17:43:52 +00:00
Fix classic SMSG_MONSTER_MOVE parsing using wrong WotLK format
handleMonsterMove called MonsterMoveParser::parse() directly (WotLK format with extra uint8 after PackedGuid) instead of going through the polymorphic packetParsers_->parseMonsterMove(). Added parseVanilla override to ClassicPacketParsers so classic/turtle use the correct vanilla format.
This commit is contained in:
parent
630c38b1d2
commit
70e579157d
2 changed files with 5 additions and 2 deletions
|
|
@ -326,6 +326,9 @@ public:
|
|||
network::Packet buildQueryQuestPacket(uint64_t npcGuid, uint32_t questId) override;
|
||||
bool parseQuestDetails(network::Packet& packet, QuestDetailsData& data) override;
|
||||
uint8_t questLogStride() const override { return 3; }
|
||||
bool parseMonsterMove(network::Packet& packet, MonsterMoveData& data) override {
|
||||
return MonsterMoveParser::parseVanilla(packet, data);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue