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; public class ServerboundSetCarriedItemPacket implements Packet { public static final StreamCodec STREAM_CODEC = Packet.codec( ServerboundSetCarriedItemPacket::write, ServerboundSetCarriedItemPacket::new ); private final int slot; public ServerboundSetCarriedItemPacket(int slot) { this.slot = slot; } private ServerboundSetCarriedItemPacket(FriendlyByteBuf buffer) { this.slot = buffer.readShort(); } /** * Writes the raw packet data to the data stream. */ private void write(FriendlyByteBuf buffer) { buffer.writeShort(this.slot); } @Override public PacketType type() { return GamePacketTypes.SERVERBOUND_SET_CARRIED_ITEM; } /** * Passes this Packet on to the NetHandler for processing. */ public void handle(ServerGamePacketListener handler) { handler.handleSetCarriedItem(this); } public int getSlot() { return this.slot; } }