Skip to content

Commit 9ace8fd

Browse files
committed
Add CMSG_HOUSING_SERVICES_REQUEST_PLAYER_CHARACTER_LIST parser
1 parent 916b3f3 commit 9ace8fd

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

WowPacketParser/Enums/Opcode.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2485,6 +2485,7 @@ public enum Opcode
24852485
SMSG_HOUSING_ROOM_UPDATE_RESULT,
24862486
SMSG_HOUSING_SERVICES_GET_OTHERS_PLAYER_OWNED_HOUSES_RESPONSE,
24872487
SMSG_HOUSING_SERVICES_GET_PLAYER_OWNED_HOUSES_RESPONSE,
2488+
SMSG_HOUSING_SERVICES_PLAYER_CHARACTER_LIST_RESPONSE,
24882489
SMSG_HOTFIX_CONNECT,
24892490
SMSG_HOTFIX_MESSAGE,
24902491
SMSG_HOTFIX_NOTIFY,

WowPacketParser/Enums/Version/V11_2_7_64632/Opcodes.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,6 +1547,7 @@ public static BiDictionary<Opcode, int> Opcodes(Direction direction)
15471547
{ Opcode.SMSG_HOUSING_ROOM_UPDATE_RESULT, 0x510003 },
15481548
{ Opcode.SMSG_HOUSING_SERVICES_GET_OTHERS_PLAYER_OWNED_HOUSES_RESPONSE, 0x52000D },
15491549
{ Opcode.SMSG_HOUSING_SERVICES_GET_PLAYER_OWNED_HOUSES_RESPONSE, 0x52000C },
1550+
{ Opcode.SMSG_HOUSING_SERVICES_PLAYER_CHARACTER_LIST_RESPONSE, 0x52001C },
15501551
{ Opcode.SMSG_HOTFIX_CONNECT, 0x440003 },
15511552
{ Opcode.SMSG_HOTFIX_MESSAGE, 0x440002 },
15521553
{ Opcode.SMSG_INITIALIZE_FACTIONS, 0x4001C5 },

WowPacketParser/Enums/Version/V11_2_7_64632/Opcodes_64877.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,6 +1546,7 @@ public static BiDictionary<Opcode, int> Opcodes(Direction direction)
15461546
{ Opcode.SMSG_HOUSING_ROOM_UPDATE_RESULT, 0x510003 },
15471547
{ Opcode.SMSG_HOUSING_SERVICES_GET_OTHERS_PLAYER_OWNED_HOUSES_RESPONSE, 0x52000D },
15481548
{ Opcode.SMSG_HOUSING_SERVICES_GET_PLAYER_OWNED_HOUSES_RESPONSE, 0x52000C },
1549+
{ Opcode.SMSG_HOUSING_SERVICES_PLAYER_CHARACTER_LIST_RESPONSE, 0x52001C },
15491550
{ Opcode.SMSG_HOTFIX_CONNECT, 0x440003 },
15501551
{ Opcode.SMSG_HOTFIX_MESSAGE, 0x440002 },
15511552
{ Opcode.SMSG_INITIALIZE_FACTIONS, 0x4001C5 },

WowPacketParserModule.V11_0_0_55666/Parsers/HousingHandler.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ public static void HandleHousingServiceSearchBnetFriendNeighborhoods(Packet pack
9797
{
9898
packet.ReadPackedGuid128("BNetAccountGUID");
9999
}
100+
101+
[Parser(Opcode.CMSG_HOUSING_SERVICES_REQUEST_PLAYER_CHARACTER_LIST)]
102+
public static void HandleHousingServicesRequestPlayerCharacterList(Packet packet)
103+
{
104+
packet.ReadPackedGuid128("HouseGUID");
105+
}
100106

101107
[Parser(Opcode.CMSG_NEIGHBORHOOD_INTERACT_WITH_CORNERSTONE)]
102108
public static void HandleNeighborhoodInteractWithCornerstone(Packet packet)

0 commit comments

Comments
 (0)