/* * Decompiled with CFR 0.152. */ package net.minecraft.network.protocol.game; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.network.codec.StreamCodec; import net.minecraft.network.protocol.Packet; import net.minecraft.network.protocol.PacketType; import net.minecraft.network.protocol.game.GamePacketTypes; import net.minecraft.network.protocol.game.ServerGamePacketListener; public record ServerboundChunkBatchReceivedPacket(float desiredChunksPerTick) implements Packet { public static final StreamCodec STREAM_CODEC = Packet.codec(ServerboundChunkBatchReceivedPacket::write, ServerboundChunkBatchReceivedPacket::new); private ServerboundChunkBatchReceivedPacket(FriendlyByteBuf input) { this(input.readFloat()); } private void write(FriendlyByteBuf output) { output.writeFloat(this.desiredChunksPerTick); } @Override public PacketType type() { return GamePacketTypes.SERVERBOUND_CHUNK_BATCH_RECEIVED; } @Override public void handle(ServerGamePacketListener listener) { listener.handleChunkBatchReceived(this); } }