Record Class CommandExecutionC2SPacket
- Record Components:
command-
- All Implemented Interfaces:
Packet<ServerPlayPacketListener>
This truncates the command to at most 256 characters before sending to the server on the client. If the server receives the command longer than 256 characters, it will reject the message and disconnect the client.
If the command contains an invalid character (see StringHelper.isValidChar(char)) or if the server receives
the commands in improper order, the server will reject the command and disconnect
the client.
Commands that took more than SignedMessage.SERVERBOUND_TIME_TO_LIVE
to reach the server are considered expired and log warnings on the server
if it contains signed message arguments. If the message takes more than
SignedMessage.CLIENTBOUND_TIME_TO_LIVE to
reach the clients (including the time it took to reach the server), the message
is not considered secure anymore by the clients, and may be discarded depending
on the clients' options.
- See Also:
- Mappings:
Namespace Name named net/minecraft/network/packet/c2s/play/CommandExecutionC2SPacketintermediary net/minecraft/class_7472official agjnamed commandintermediary comp_808official b
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PacketCodec<PacketByteBuf, CommandExecutionC2SPacket> private final StringThe field for thecommandrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ServerPlayPacketListener serverPlayPacketListener) command()Returns the value of thecommandrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.private voidwrite(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.packet.Packet
isWritingErrorSkippable, transitionsNetworkState
-
Field Details
-
command
The field for thecommandrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;CODEC:Lnet/minecraft/network/codec/PacketCodec;intermediary field_48178Lnet/minecraft/class_7472;field_48178:Lnet/minecraft/class_9139;official aLagj;a:Lyv;
-
-
Constructor Details
-
CommandExecutionC2SPacket
- Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)Vintermediary <init>Lnet/minecraft/class_7472;<init>(Lnet/minecraft/class_2540;)Vofficial <init>Lagj;<init>(Lvx;)V
-
CommandExecutionC2SPacket
-
-
Method Details
-
write
- Mappings:
Namespace Name Mixin selector named writeLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;write(Lnet/minecraft/network/PacketByteBuf;)Vintermediary method_55964Lnet/minecraft/class_7472;method_55964(Lnet/minecraft/class_2540;)Vofficial aLagj;a(Lvx;)V
-
getPacketId
- Specified by:
getPacketIdin interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector named getPacketIdLnet/minecraft/network/packet/Packet;getPacketId()Lnet/minecraft/network/packet/PacketType;intermediary method_55846Lnet/minecraft/class_2596;method_55846()Lnet/minecraft/class_9145;official aLze;a()Lzg;
-
apply
- Specified by:
applyin interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector named applyLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;apply(Lnet/minecraft/network/listener/ServerPlayPacketListener;)Vintermediary method_43897Lnet/minecraft/class_7472;method_43897(Lnet/minecraft/class_2792;)Vofficial aLagj;a(Lagd;)V
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
command
Returns the value of thecommandrecord component.- Returns:
- the value of the
commandrecord component
-