From ebab366a6466537c93d4864c304af711e62ba062 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20W=C3=B6hrle?= Date: Thu, 11 Apr 2024 17:27:03 +0200 Subject: [PATCH] fix wrong packet type --- .../packet/impl/serverbound/ServerboundPartyInfoPacket.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/hypixel/modapi/packet/impl/serverbound/ServerboundPartyInfoPacket.java b/src/main/java/net/hypixel/modapi/packet/impl/serverbound/ServerboundPartyInfoPacket.java index f705611..fe9157e 100644 --- a/src/main/java/net/hypixel/modapi/packet/impl/serverbound/ServerboundPartyInfoPacket.java +++ b/src/main/java/net/hypixel/modapi/packet/impl/serverbound/ServerboundPartyInfoPacket.java @@ -17,6 +17,6 @@ public ServerboundPartyInfoPacket(PacketSerializer serializer) { @Override public HypixelPacketType getType() { - return HypixelPacketType.LOCATION; + return HypixelPacketType.PARTY_INFO; } }