Skip to content

Commit 1b5d542

Browse files
committed
Fix SMSG_HOUSING_SERVICES_GET_PLAYER_OWNED_HOUSES_RESPONSE and SMSG_HOUSING_SERVICES_GET_OTHERS_PLAYER_OWNED_HOUSES_RESPONSE
1 parent e563f6b commit 1b5d542

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

WowPacketParser/Enums/Version/V11_2_7_64632/Opcodes_64877.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,6 +1534,17 @@ public static BiDictionary<Opcode, int> Opcodes(Direction direction)
15341534
{ Opcode.SMSG_HARDCORE_DEATH_ALERT, 0x400349 },
15351535
{ Opcode.SMSG_HEALTH_UPDATE, 0x400174 },
15361536
{ Opcode.SMSG_HIGHEST_THREAT_UPDATE, 0x40017C },
1537+
{ Opcode.SMSG_HOUSING_CURRENT_HOUSE_INFO_RESPONSE, 0x530001 },
1538+
{ Opcode.SMSG_HOUSING_DECOR_CATALOG_CREATE_SEARCHER_RESPONSE, 0x4F0006 },
1539+
{ Opcode.SMSG_HOUSING_DECOR_SELECT_DECOR_RESPONSE, 0x4F0004 },
1540+
{ Opcode.SMSG_HOUSING_DECOR_SET_EDITOR_MODE_ACTIVE_RESPONSE, 0x4F0000 },
1541+
{ Opcode.SMSG_HOUSING_EXTERIOR_SET_EXTERIOR_LOCK_STATE, 0x4E0000 },
1542+
{ Opcode.SMSG_HOUSING_FIXTURE_SET_EDITOR_MODE_ACTIVE_RESPONSE, 0x500000 },
1543+
{ Opcode.SMSG_HOUSING_ROOM_REMOVE_ROOM_RESPONSE, 0x510002 },
1544+
{ Opcode.SMSG_HOUSING_ROOM_SET_EDITOR_MODE_ACTIVE_RESPONSE, 0x510000 },
1545+
{ Opcode.SMSG_HOUSING_ROOM_UPDATE_RESULT, 0x510003 },
1546+
{ Opcode.SMSG_HOUSING_SERVICES_GET_OTHERS_PLAYER_OWNED_HOUSES_RESPONSE, 0x52000D },
1547+
{ Opcode.SMSG_HOUSING_SERVICES_GET_PLAYER_OWNED_HOUSES_RESPONSE, 0x52000C },
15371548
{ Opcode.SMSG_HOTFIX_CONNECT, 0x440003 },
15381549
{ Opcode.SMSG_HOTFIX_MESSAGE, 0x440002 },
15391550
{ Opcode.SMSG_INITIALIZE_FACTIONS, 0x4001C5 },

WowPacketParserModule.V11_0_0_55666/Parsers/HousingHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ public static void HousingRoomUpdateResult(Packet packet)
182182
public static void HandleHousingServiceGetOwnedHousesResponse(Packet packet)
183183
{
184184
var count = packet.ReadUInt32("Count");
185+
packet.ReadByteE<HousingResult>("Result");
185186
for (uint i = 0; i < count; i++)
186187
{
187-
packet.ReadByteE<HousingResult>("Result", i);
188188
ReadHouse(packet, i);
189189
}
190190
}

0 commit comments

Comments
 (0)