TrinityCore / WowPacketParser

World of Warcraft Packet Parser
GNU General Public License v3.0
419 stars 354 forks source link

CMSG_GARRISON_RESEARCH_TALENT not fully readed on Shadowlands #675

Closed Thordekk closed 2 years ago

Thordekk commented 2 years ago
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 . . . . . . . .
------------------------------------------------- ---------------------------------
MaxtorCoder commented 2 years ago
        [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");
        }
Thordekk commented 2 years ago

Thanks Maxtor