Interface MessageDecorator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
MinecraftServer.getMessageDecorator().
For the message decorator to produce a signed message, both the server and the sender's client need to have chat previews enabled, Otherwise, the decorated content is considered unsigned, and if the clients require chat messages to be signed via the "Only Show Secure Chat" option, they will see the undecorated message. Therefore, message decorator is not recommended for censoring messages.
It is very important that the decorator be pure; i.e. return the same text when given the same text (and sender). Otherwise, the server detects a mismatch between the preview and the actual message, and discards the message as it is now considered improperly signed. For example, a decorator that appends the time the decoration was applied would be likely to fail, since there is usually a delay between the previewing and the submission.
- Mappings:
Namespace Name official rhintermediary net/minecraft/class_7492named net/minecraft/network/message/MessageDecorator
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final MessageDecoratorAn empty message decorator that returns the original message. -
Method Summary
Modifier and TypeMethodDescriptionstatic SignedMessageattachIfNotDecorated(SignedMessage signedMessage, Text text) default CompletableFuture<SignedMessage>decorate(@Nullable ServerPlayerEntity serverPlayerEntity, SignedMessage signedMessage) decorate(@Nullable ServerPlayerEntity sender, Text message) Returns the decoratedmessage.
-
Field Details
-
NOOP
An empty message decorator that returns the original message.- Mappings:
Namespace Name Mixin selector official aLrh;a:Lrh;intermediary field_39384Lnet/minecraft/class_7492;field_39384:Lnet/minecraft/class_7492;named NOOPLnet/minecraft/network/message/MessageDecorator;NOOP:Lnet/minecraft/network/message/MessageDecorator;
-
-
Method Details
-
decorate
Returns the decoratedmessage.- Parameters:
sender- the player who sent the message, ornullifmessagewas not sent by a player- Returns:
- the decorated
message - Mappings:
Namespace Name Mixin selector official decorateLrh;decorate(Lagh;Lrq;)Ljava/util/concurrent/CompletableFuture;intermediary decorateLnet/minecraft/class_7492;decorate(Lnet/minecraft/class_3222;Lnet/minecraft/class_2561;)Ljava/util/concurrent/CompletableFuture;named decorateLnet/minecraft/network/message/MessageDecorator;decorate(Lnet/minecraft/server/network/ServerPlayerEntity;Lnet/minecraft/text/Text;)Ljava/util/concurrent/CompletableFuture;
-
decorate
default CompletableFuture<SignedMessage> decorate(@Nullable @Nullable ServerPlayerEntity serverPlayerEntity, SignedMessage signedMessage) -
attachIfNotDecorated
-