Skip to content

Commit

Permalink
Fixed party request response length
Browse files Browse the repository at this point in the history
These files were forgotten to be committed previously when the XML was adapted.
  • Loading branch information
sven-n committed Nov 22, 2024
1 parent aec5637 commit eab38f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Packets/C1-41-PartyInviteResponse_by-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ If the sender accepts the request, it's added to the party.
| Index | Length | Data Type | Value | Description |
|-------|--------|-----------|-------|-------------|
| 0 | 1 | Byte | 0xC1 | [Packet type](PacketTypes.md) |
| 1 | 1 | Byte | 4 | Packet header - length of the packet |
| 1 | 1 | Byte | 6 | Packet header - length of the packet |
| 2 | 1 | Byte | 0x41 | Packet header - packet type identifier |
| 3 | 1 | Boolean | | Accepted |
| 4 | 2 | ShortBigEndian | | RequesterId |
Original file line number Diff line number Diff line change
Expand Up @@ -7741,7 +7741,7 @@ private PartyInviteResponse(Memory<byte> data, bool initialize)
/// <summary>
/// Gets the initial length of this data packet. When the size is dynamic, this value may be bigger than actually needed.
/// </summary>
public static int Length => 4;
public static int Length => 6;

/// <summary>
/// Gets the header of this packet.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7616,7 +7616,7 @@ private PartyInviteResponseRef(Span<byte> data, bool initialize)
/// <summary>
/// Gets the initial length of this data packet. When the size is dynamic, this value may be bigger than actually needed.
/// </summary>
public static int Length => 4;
public static int Length => 6;

/// <summary>
/// Gets the header of this packet.
Expand Down

0 comments on commit eab38f3

Please sign in to comment.