Record Class CommandExecutionC2SPacket
- Record Components:
command-timestamp-argumentSignatures-signedPreview-
- 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 isValidChar) 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
invalid @link
SignedMessage#SERVERBOUND_TIME_TO_LIVEinvalid @link
SignedMessage#CLIENTBOUND_TIME_TO_LIVE
- See Also:
- Mappings:
Namespace Name official xbintermediary net/minecraft/class_7472named net/minecraft/network/packet/c2s/play/CommandExecutionC2SPacketofficial aintermediary comp_808named commandofficial bintermediary comp_809named timestampofficial cintermediary comp_810named argumentSignaturesofficial dintermediary comp_859named signedPreview
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ArgumentSignatureDataMapThe field for theargumentSignaturesrecord component.private final StringThe field for thecommandrecord component.private final booleanThe field for thesignedPreviewrecord component.private final InstantThe field for thetimestamprecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCommandExecutionC2SPacket(String command, Instant timestamp, ArgumentSignatureDataMap argumentSignatures, boolean signedPreview) Creates an instance of aCommandExecutionC2SPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ServerPlayPacketListener serverPlayPacketListener) Returns the value of theargumentSignaturesrecord component.command()Returns the value of thecommandrecord component.createArgumentsSigner(UUID sender) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of thesignedPreviewrecord component.Returns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.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
isWritingErrorSkippable
-
Field Details
-
command
The field for thecommandrecord component. -
timestamp
The field for thetimestamprecord component. -
argumentSignatures
The field for theargumentSignaturesrecord component. -
signedPreview
private final boolean signedPreviewThe field for thesignedPreviewrecord component.
-
-
Constructor Details
-
CommandExecutionC2SPacket
public CommandExecutionC2SPacket(String command, Instant timestamp, ArgumentSignatureDataMap argumentSignatures, boolean signedPreview) Creates an instance of aCommandExecutionC2SPacketrecord class.- Parameters:
command- the value for thecommandrecord componenttimestamp- the value for thetimestamprecord componentargumentSignatures- the value for theargumentSignaturesrecord componentsignedPreview- the value for thesignedPreviewrecord component
-
CommandExecutionC2SPacket
- Mappings:
Namespace Name Mixin selector official <init>Lxb;<init>(Lqx;)Vintermediary <init>Lnet/minecraft/class_7472;<init>(Lnet/minecraft/class_2540;)Vnamed <init>Lnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
-
Method Details
-
write
- Specified by:
writein interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLso;a(Lqx;)Vintermediary method_11052Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)Vnamed writeLnet/minecraft/network/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
applyin interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLxb;a(Lww;)Vintermediary method_43897Lnet/minecraft/class_7472;method_43897(Lnet/minecraft/class_2792;)Vnamed applyLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;apply(Lnet/minecraft/network/listener/ServerPlayPacketListener;)V
-
createArgumentsSigner
- Mappings:
Namespace Name Mixin selector official aLxb;a(Ljava/util/UUID;)Ldp;intermediary method_43896Lnet/minecraft/class_7472;method_43896(Ljava/util/UUID;)Lnet/minecraft/class_7448;named createArgumentsSignerLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;createArgumentsSigner(Ljava/util/UUID;)Lnet/minecraft/network/message/CommandArgumentSigner;
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
command
Returns the value of thecommandrecord component.- Returns:
- the value of the
commandrecord component
-
timestamp
Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-
argumentSignatures
Returns the value of theargumentSignaturesrecord component.- Returns:
- the value of the
argumentSignaturesrecord component
-
signedPreview
public boolean signedPreview()Returns the value of thesignedPreviewrecord component.- Returns:
- the value of the
signedPreviewrecord component
-