Also fix javadocs in the Server interface

This commit is contained in:
Spottedleaf 2016-04-17 13:35:31 -05:00 committed by Zach Brown
parent 13652bda9f
commit 6876b1d7a6

View file

@ -1,4 +1,4 @@
From bf356f311d416d289300d477d2328d28c039fe76 Mon Sep 17 00:00:00 2001
From e25bb60f64574f5ad5a47207b373e9aa4689bf9a Mon Sep 17 00:00:00 2001
From: Zach Brown <zach.brown@destroystokyo.com>
Date: Mon, 29 Feb 2016 19:54:32 -0600
Subject: [PATCH] Graduate bungeecord chat API from spigot subclasses
@ -37,7 +37,7 @@ index b6a0b40..5b37396 100644
* Gets the name of the update folder. The update folder is used to safely
* update plugins at the right moment on a plugin load.
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
index a1ce356..91bde81 100644
index a1ce356..309fa3f 100644
--- a/src/main/java/org/bukkit/Server.java
+++ b/src/main/java/org/bukkit/Server.java
@@ -238,6 +238,22 @@ public interface Server extends PluginMessageRecipient {
@ -46,14 +46,14 @@ index a1ce356..91bde81 100644
+ // Paper start
+ /**
+ * Sends the component to the player
+ * Sends the component to all online players.
+ *
+ * @param component the components to send
+ * @param component the component to send
+ */
+ public void broadcast(net.md_5.bungee.api.chat.BaseComponent component);
+
+ /**
+ * Sends an array of components as a single message to the player
+ * Sends an array of components as a single message to all online players.
+ *
+ * @param components the components to send
+ */
@ -99,5 +99,5 @@ index e13ca66..c19bb76 100644
* Forces an update of the player's entire inventory.
*
--
2.5.0
2.8.0