Skip to content

Commit

Permalink
Merge branch 'master' into dev/dotnet9
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-n authored Nov 24, 2024
2 parents aae72d7 + eab38f3 commit 0c83370
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 0c83370

Please sign in to comment.