Skip to content

Commit c7ca09d

Browse files
committed
Add CMSG_HOUSING_SERVICES_REQUEST_PLAYER_CHARACTER_LIST parser
1 parent 916b3f3 commit c7ca09d

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
@@ -92,6 +92,12 @@ public static void HandleHousingServiceGetOthersPlayerOwnedHouses(Packet packet)
9292
packet.ReadPackedGuid128("PlayerGUID");
9393
}
9494

95+
[Parser(Opcode.CMSG_HOUSING_SERVICES_REQUEST_PLAYER_CHARACTER_LIST)]
96+
public static void HandleHousingServicesRequestPlayerCharacterList(Packet packet)
97+
{
98+
packet.ReadPackedGuid128("HouseGUID");
99+
}
100+
95101
[Parser(Opcode.CMSG_HOUSING_SERVICES_SEARCH_BNET_FRIEND_NEIGHBORHOODS)]
96102
public static void HandleHousingServiceSearchBnetFriendNeighborhoods(Packet packet)
97103
{

0 commit comments

Comments
 (0)