~ruther/NosSmooth

32f0234b57ace9428a38bd8b10879f3cfdb52e98 — Rutherther 2 years ago e0a38d8
fix(packets): make inv sub packets optional
1 files changed, 2 insertions(+), 2 deletions(-)

M Packets/NosSmooth.Packets/Server/Inventory/InvPacket.cs
M Packets/NosSmooth.Packets/Server/Inventory/InvPacket.cs => Packets/NosSmooth.Packets/Server/Inventory/InvPacket.cs +2 -2
@@ 25,6 25,6 @@ public record InvPacket
(
    [PacketIndex(0)]
    BagType Bag,
    [PacketListIndex(1, InnerSeparator = '.', ListSeparator = ' ')]
    IReadOnlyList<InvSubPacket> InvSubPackets
    [PacketListIndex(1, InnerSeparator = '.', ListSeparator = ' ', IsOptional = true)]
    IReadOnlyList<InvSubPacket>? InvSubPackets
) : IPacket;
\ No newline at end of file

Do not follow this link