Skip to content

Commit 3f59740

Browse files
committed
Fix SMSG_QUERY_NEIGHBORHOOD_NAME_RESPONSE name length bits
1 parent 9362480 commit 3f59740

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

WowPacketParserModule.V11_0_0_55666/Parsers/HousingHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public static void HandleInvalidateNeighborhoodName(Packet packet)
199199
public static void HandleQueryNeighborhoodNameResponse(Packet packet)
200200
{
201201
packet.ReadPackedGuid128("NeighborhoodGUID");
202-
var nameLen = packet.ReadBits(10);
202+
var nameLen = packet.ReadBits(8);
203203
packet.ReadWoWString("NeighborhoodName", nameLen);
204204
}
205205

0 commit comments

Comments
 (0)