Skip to content

Commit 99df628

Browse files
authored
Fix wrong packet type for ServerboundPartyInfoPacket (#2)
1 parent c20863e commit 99df628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/hypixel/modapi/packet/impl/serverbound/ServerboundPartyInfoPacket.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ public ServerboundPartyInfoPacket(PacketSerializer serializer) {
1717

1818
@Override
1919
public HypixelPacketType getType() {
20-
return HypixelPacketType.LOCATION;
20+
return HypixelPacketType.PARTY_INFO;
2121
}
2222
}

0 commit comments

Comments
 (0)