Record Class CommandExecutionC2SPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.c2s.play.CommandExecutionC2SPacket
- Record Components:
command-time-argumentSignatures-signedPreview-
- All Implemented Interfaces:
Packet<ServerPlayPacketListener>
public record CommandExecutionC2SPacket(String command, Instant time, ArgumentSignatureDataMap argumentSignatures, boolean signedPreview)
extends Record
implements Packet<ServerPlayPacketListener>
A packet used to execute commands on the server.
This truncates the command to at most characters before sending to the server on the client. If the server receives the command longer than characters, it will reject the message and disconnect the client.
If the command contains an invalid character (see isValidChar), the server will
reject the command and disconnect the client.
Commands that took more than ChatMessageC2SPacket.TIME_TO_LIVE to reach
the server are considered expired and will be discarded.
- See Also:
- Mappings:
Namespace Name official xaintermediary net/minecraft/class_7472named net/minecraft/network/packet/c2s/play/CommandExecutionC2SPacketofficial aintermediary comp_808named commandofficial bintermediary comp_809named timeofficial 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 thetimerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCommandExecutionC2SPacket(String command, Instant instant, ArgumentSignatureDataMap argumentSignatures, boolean bool) -
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.time()Returns the value of thetimerecord 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. -
time
The field for thetimerecord component. -
argumentSignatures
The field for theargumentSignaturesrecord component. -
signedPreview
private final boolean signedPreviewThe field for thesignedPreviewrecord component.
-
-
Constructor Details
-
CommandExecutionC2SPacket
public CommandExecutionC2SPacket(String command, Instant instant, ArgumentSignatureDataMap argumentSignatures, boolean bool) - Mappings:
Namespace Name Mixin selector official <init>Lxa;<init>(Ljava/lang/String;Ljava/time/Instant;Ldv;Z)Vintermediary <init>Lnet/minecraft/class_7472;<init>(Ljava/lang/String;Ljava/time/Instant;Lnet/minecraft/class_7450;Z)Vnamed <init>Lnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;<init>(Ljava/lang/String;Ljava/time/Instant;Lnet/minecraft/network/encryption/ArgumentSignatureDataMap;Z)V
-
CommandExecutionC2SPacket
- Mappings:
Namespace Name Mixin selector official <init>Lxa;<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 aLxa;a(Lwv;)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 aLxa;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/encryption/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
-
time
Returns the value of thetimerecord component.- Returns:
- the value of the
timerecord 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
-