Files
minego/pkg/protocol/packet/game/server/chunk_batch_received.go
2025-08-27 20:28:44 +08:00

19 lines
398 B
Go

package server
import "git.konjactw.dev/falloutBot/go-mc/data/packetid"
//codec:gen
type ChunkBatchReceived struct {
ChunksPerTick float32
}
func (*ChunkBatchReceived) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundChunkBatchReceived
}
func init() {
registerPacket(packetid.ServerboundChunkBatchReceived, func() ServerboundPacket {
return &ChunkBatchReceived{}
})
}