Add BaseComponent sendMessage methods to CommandSender

This commit is contained in:
Riley Park
2016-03-08 13:05:59 -08:00
parent 7c31d0a39b
commit 8b45793902

View File

@@ -1,6 +1,9 @@
package org.bukkit.command;
import java.util.UUID;
import net.kyori.adventure.audience.MessageType;
import net.kyori.adventure.identity.Identity;
import net.kyori.adventure.text.Component;
import org.bukkit.Server;
import org.bukkit.permissions.Permissible;
import org.jetbrains.annotations.NotNull;
@@ -168,5 +171,33 @@ public interface CommandSender extends net.kyori.adventure.audience.Audience, Pe
default void sendPlainMessage(final @NotNull String message) {
this.sendMessage(net.kyori.adventure.text.Component.text(message));
}
/**
* Sends the component to the sender
*
* <p>If this sender does not support sending full components then
* the component will be sent as legacy text.</p>
*
* @param component the component to send
* @deprecated use {@link #sendMessage(Identity, Component, MessageType)} instead
*/
@Deprecated
default void sendMessage(@NotNull net.md_5.bungee.api.chat.BaseComponent component) {
this.sendMessage(component.toLegacyText());
}
/**
* Sends an array of components as a single message to the sender
*
* <p>If this sender does not support sending full components then
* the components will be sent as legacy text.</p>
*
* @param components the components to send
* @deprecated use {@link #sendMessage(Identity, Component, MessageType)} instead
*/
@Deprecated
default void sendMessage(@NotNull net.md_5.bungee.api.chat.BaseComponent... components) {
this.sendMessage(new net.md_5.bungee.api.chat.TextComponent(components).toLegacyText());
}
// Paper end
}