32 lines
1.1 KiB
Java
32 lines
1.1 KiB
Java
package net.minecraft.network.protocol.game;
|
|
|
|
import net.minecraft.network.FriendlyByteBuf;
|
|
import net.minecraft.network.codec.ByteBufCodecs;
|
|
import net.minecraft.network.codec.StreamCodec;
|
|
import net.minecraft.network.protocol.Packet;
|
|
import net.minecraft.network.protocol.PacketType;
|
|
import net.minecraft.world.item.crafting.display.RecipeDisplayId;
|
|
|
|
public record ServerboundPlaceRecipePacket(int containerId, RecipeDisplayId recipe, boolean useMaxItems) implements Packet<ServerGamePacketListener> {
|
|
public static final StreamCodec<FriendlyByteBuf, ServerboundPlaceRecipePacket> STREAM_CODEC = StreamCodec.composite(
|
|
ByteBufCodecs.CONTAINER_ID,
|
|
ServerboundPlaceRecipePacket::containerId,
|
|
RecipeDisplayId.STREAM_CODEC,
|
|
ServerboundPlaceRecipePacket::recipe,
|
|
ByteBufCodecs.BOOL,
|
|
ServerboundPlaceRecipePacket::useMaxItems,
|
|
ServerboundPlaceRecipePacket::new
|
|
);
|
|
|
|
@Override
|
|
public PacketType<ServerboundPlaceRecipePacket> type() {
|
|
return GamePacketTypes.SERVERBOUND_PLACE_RECIPE;
|
|
}
|
|
|
|
/**
|
|
* Passes this Packet on to the NetHandler for processing.
|
|
*/
|
|
public void handle(ServerGamePacketListener handler) {
|
|
handler.handlePlaceRecipe(this);
|
|
}
|
|
}
|