fix: possible issues

This commit is contained in:
2026-02-15 23:08:17 +08:00
parent aba432da7a
commit d2bec53bb8
3 changed files with 4 additions and 5 deletions
@@ -8,11 +8,11 @@ type DebugSampleSubscription struct {
}
func (*DebugSampleSubscription) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundDebugSampleSubscription
return packetid.ServerboundDebugSubscriptionRequest
}
func init() {
registerPacket(packetid.ServerboundDebugSampleSubscription, func() ServerboundPacket {
registerPacket(packetid.ServerboundDebugSubscriptionRequest, func() ServerboundPacket {
return &DebugSampleSubscription{}
})
}