From 5ed61e070ec44f8ce5b0462bd2111028cbec3eb6 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sun, 13 Feb 2022 17:41:55 +0100 Subject: [PATCH] fix(packets): make correct types in gp packet --- Packets/NosSmooth.Packets/Server/Portals/GpPacket.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packets/NosSmooth.Packets/Server/Portals/GpPacket.cs b/Packets/NosSmooth.Packets/Server/Portals/GpPacket.cs index dbaf4fc..410c571 100644 --- a/Packets/NosSmooth.Packets/Server/Portals/GpPacket.cs +++ b/Packets/NosSmooth.Packets/Server/Portals/GpPacket.cs @@ -27,11 +27,11 @@ public record GpPacket [PacketIndex(1)] short Y, [PacketIndex(2)] - short TargetMapId, + int TargetMapId, [PacketIndex(3)] PortalType? PortalType, [PacketIndex(4)] - int PortalId, + long PortalId, [PacketIndex(5)] bool IsDisabled ) : IPacket; \ No newline at end of file -- 2.48.1