M Packets/NosSmooth.Packets/NosSmooth.Packets.csproj => Packets/NosSmooth.Packets/NosSmooth.Packets.csproj +2 -2
@@ 7,9 7,9 @@
<Description>Contains default NosTale packets.</Description>
<RepositoryUrl>https://github.com/Rutherther/NosSmooth/</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
- <VersionPrefix>3.5.0</VersionPrefix>
+ <VersionPrefix>3.5.1</VersionPrefix>
<TargetFrameworks>net7.0;netstandard2.1</TargetFrameworks>
- <PackageReleaseNotes>Make su packet position nullable.</PackageReleaseNotes>
+ <PackageReleaseNotes>Put correct (list) attribute to Pst packet Effects.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
M Packets/NosSmooth.Packets/Server/Groups/PstPacket.cs => Packets/NosSmooth.Packets/Server/Groups/PstPacket.cs +2 -2
@@ 53,6 53,6 @@ public record PstPacket
SexType? PlayerSex,
[PacketIndex(10)]
int? PlayerMorphVNum,
- [PacketIndex(11, IsOptional = true)]
- IReadOnlyList<EffectsSubPacket>? Effects
+ [PacketListIndex(11, InnerSeparator = '.', ListSeparator = ' ')]
+ IReadOnlyList<EffectsSubPacket> Effects
) : IPacket;=
\ No newline at end of file