From dd1ce75c06576d2022e4612abfcee6e565b2306c Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sat, 21 Jan 2023 20:52:53 +0100 Subject: [PATCH] feat(packets): allow multiple separators in sayi2 packet --- Packets/NosSmooth.Packets/Server/Chat/Sayi2Packet.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Packets/NosSmooth.Packets/Server/Chat/Sayi2Packet.cs b/Packets/NosSmooth.Packets/Server/Chat/Sayi2Packet.cs index 1590197..4475df1 100644 --- a/Packets/NosSmooth.Packets/Server/Chat/Sayi2Packet.cs +++ b/Packets/NosSmooth.Packets/Server/Chat/Sayi2Packet.cs @@ -7,6 +7,7 @@ using NosSmooth.Packets.Enums; using NosSmooth.Packets.Enums.Chat; using NosSmooth.Packets.Enums.Entities; +using NosSmooth.Packets.Server.Battle; using NosSmooth.PacketSerializer.Abstractions.Attributes; namespace NosSmooth.Packets.Server.Chat; @@ -26,7 +27,7 @@ public record Sayi2Packet ( [PacketIndex(0)] EntityType EntityType, - [PacketIndex(1)] + [PacketIndex(1, AllowMultipleSeparators = true)] long EntityId, [PacketIndex(2)] SayColor Color, -- 2.48.1