TrinityCore/WowPacketParser

CMSG_GARRISON_RESEARCH_TALENT not fully readed on Shadowlands

Closed this issue · 2 comments

ClientToServer: CMSG_GARRISON_RESEARCH_TALENT (0x32F9) Length: 11 ConnIdx: 1 Time: 05/12/2022 19:02:07.030 Number: 91752
GarrTalentID: 70582272
Packet not fully read! Current position: 4 Length: 11 Bytes remaining: 7.
|-------------------------------------------------|---------------------------------|
| 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F | 0 1 2 3 4 5 6 7 8 9 A B C D E F |
|-------------------------------------------------|---------------------------------|
| 00 00 35 04 00 00 01 00 00 00 00 | . . 5 . . . . . . . . |
|-------------------------------------------------|---------------------------------|

        [Parser(Opcode.CMSG_GARRISON_RESEARCH_TALENT)]
        public static void HandleGarrisonResearchTalent(Packet packet)
        {
            packet.ReadPackedGuid128("NPCTalentGuid");
            packet.ReadUInt32("GarrTalentID");
            packet.ReadUInt32E<GarrisonTalentFlags>("Flags");
            packet.ReadBit("IsTemporary");
        }

Thanks Maxtor