From 71f75d62e6cd62b378e55c5325c8a8f021a16598 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Boh=C3=A1=C4=8Dek?= Date: Sat, 14 Jan 2023 11:38:45 +0100 Subject: [PATCH] fix(packets): implement IPacket in RaidBfPacket --- Packets/NosSmooth.Packets/Server/Raids/RaidBfPacket.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Packets/NosSmooth.Packets/Server/Raids/RaidBfPacket.cs b/Packets/NosSmooth.Packets/Server/Raids/RaidBfPacket.cs index b6480b9..63ee0d6 100644 --- a/Packets/NosSmooth.Packets/Server/Raids/RaidBfPacket.cs +++ b/Packets/NosSmooth.Packets/Server/Raids/RaidBfPacket.cs @@ -4,6 +4,7 @@ // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. +using NosSmooth.Packets.Enums.Raids; using NosSmooth.PacketSerializer.Abstractions.Attributes; namespace NosSmooth.Packets.Server.Raids; @@ -21,7 +22,7 @@ public record RaidBfPacket [PacketIndex(0)] byte Type, [PacketIndex(1)] - byte WindowType, + RaidBfPacketType WindowType, [PacketIndex(2)] byte Unknown -); \ No newline at end of file +) : IPacket; \ No newline at end of file -- 2.48.1