minecraft_25w45a_unobfuscated/net/minecraft/network/protocol/game/ServerboundChatCommandPacket.java
2025-11-24 22:52:51 +03:00

36 lines
1.1 KiB
Java

/*
* 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<ServerGamePacketListener>
{
public static final StreamCodec<FriendlyByteBuf, ServerboundChatCommandPacket> 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<ServerboundChatCommandPacket> type() {
return GamePacketTypes.SERVERBOUND_CHAT_COMMAND;
}
@Override
public void handle(ServerGamePacketListener listener) {
listener.handleChatCommand(this);
}
}