2020-05-06 09:48:49 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2016-03-08 21:16:54 +00:00
|
|
|
From: kashike <kashike@vq.lc>
|
|
|
|
Date: Tue, 8 Mar 2016 13:05:59 -0800
|
|
|
|
Subject: [PATCH] Add BaseComponent sendMessage methods to CommandSender
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/command/CommandSender.java b/src/main/java/org/bukkit/command/CommandSender.java
|
2020-05-06 09:48:49 +00:00
|
|
|
index a9020ecc744514067374bd2b1751251add4d9a78..d3b3a8bf94dac370ea254875e4d4a30894a70c67 100644
|
2016-03-08 21:16:54 +00:00
|
|
|
--- a/src/main/java/org/bukkit/command/CommandSender.java
|
|
|
|
+++ b/src/main/java/org/bukkit/command/CommandSender.java
|
2020-01-28 19:43:57 +00:00
|
|
|
@@ -61,4 +61,30 @@ public interface CommandSender extends Permissible {
|
2019-03-20 00:28:15 +00:00
|
|
|
@NotNull
|
2017-05-15 16:25:20 +00:00
|
|
|
Spigot spigot();
|
|
|
|
// Spigot end
|
2016-03-08 21:16:54 +00:00
|
|
|
+
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * 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
|
|
|
|
+ */
|
2019-03-20 00:28:15 +00:00
|
|
|
+ default void sendMessage(@NotNull net.md_5.bungee.api.chat.BaseComponent component) {
|
2016-03-08 21:16:54 +00:00
|
|
|
+ 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
|
|
|
|
+ */
|
2019-03-20 00:28:15 +00:00
|
|
|
+ default void sendMessage(@NotNull net.md_5.bungee.api.chat.BaseComponent... components) {
|
2016-03-08 21:16:54 +00:00
|
|
|
+ this.sendMessage(new net.md_5.bungee.api.chat.TextComponent(components).toLegacyText());
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|