Skip to content

Commit 9f95f81

Browse files
committed
Rename unknown fields
1 parent 0f5d5db commit 9f95f81

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

WowPacketParserModule.V11_0_0_55666/Parsers/HousingHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ public static void HandleHousingDecorCatalogDestroyEntry(Packet packet)
1818
{
1919
packet.ReadPackedGuid128("BnetAccountID");
2020
packet.ReadUInt16("CatalogEntryID");
21-
packet.ReadUInt32("Unknown");
21+
packet.ReadUInt32("Field_10");
2222
}
2323

2424
[Parser(Opcode.CMSG_HOUSING_DECOR_CATALOG_DESTROY_ALL_ENTRY_COPIES)]
2525
public static void HandleHousingDecorCatalogDestroyAllEntryCopies(Packet packet)
2626
{
2727
packet.ReadUInt16("CatalogEntryID");
28-
packet.ReadUInt16("Unknown");
28+
packet.ReadUInt16("Field_4");
2929
}
3030

3131
[Parser(Opcode.CMSG_HOUSING_DECOR_COMMIT_DYES_FOR_SELECTED_DECOR)]
@@ -184,7 +184,7 @@ public static void HandleHousingServiceGetOwnedHousesResponse(Packet packet)
184184
var count = packet.ReadUInt32("Count");
185185
for (uint i = 0; i < count; i++)
186186
{
187-
packet.ReadBit("UnknownBit", i);
187+
packet.ReadBit("Field_4", i);
188188
ReadHouse(packet, i);
189189
}
190190
}

0 commit comments

Comments
 (0)