/* * 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 ServerboundChatCommandPacket(String command) implements Packet { public static final StreamCodec STREAM_CODEC = Packet.codec(ServerboundChatCommandPacket::write, ServerboundChatCommandPacket::new); private ServerboundChatCommandPacket(FriendlyByteBuf input) { this(input.readUtf()); } private void write(FriendlyByteBuf output) { output.writeUtf(this.command); } @Override public PacketType type() { return GamePacketTypes.SERVERBOUND_CHAT_COMMAND; } @Override public void handle(ServerGamePacketListener listener) { listener.handleChatCommand(this); } }