You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upstream has released updates that appear to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
Bukkit Changes:
cfd18bd SPIGOT-6436: Add Player#stopAllSounds
CraftBukkit Changes:
b58f429 SPIGOT-6436: Add Player#stopAllSounds
eb19161 SPIGOT-6783: Items do not appear in custom anvil inventories
376edf4 SPIGOT-6779: Fix LivingEntity#attack for Player entities
747a73e SPIGOT-6772: Use entity mailbox and re-schedule entities if they get unloaded
index 2c3e43ccf862c9de27811de0a49a2dee85e5d459..d39e5da511b8cc2239ad2eeb300762df2c4387bd 100644
8
+
index 4f1f9a40cf34dca1c0ace32546680867d9aa296d..877c9a14b66e1c9282b0150de7373decba3ef718 100644
9
9
--- a/src/main/java/org/bukkit/entity/Player.java
10
10
+++ b/src/main/java/org/bukkit/entity/Player.java
11
11
@@ -3,6 +3,7 @@ package org.bukkit.entity;
@@ -16,7 +16,7 @@ index 2c3e43ccf862c9de27811de0a49a2dee85e5d459..d39e5da511b8cc2239ad2eeb300762df
16
16
import org.bukkit.DyeColor;
17
17
import org.bukkit.Effect;
18
18
import org.bukkit.GameMode;
19
-
@@ -712,6 +713,39 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
19
+
@@ -717,6 +718,39 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
20
20
public void sendMap(@NotNull MapView map);
21
21
22
22
// Paper start
@@ -56,7 +56,7 @@ index 2c3e43ccf862c9de27811de0a49a2dee85e5d459..d39e5da511b8cc2239ad2eeb300762df
56
56
/**
57
57
* Sends the component to the player
58
58
*
59
-
@@ -739,9 +773,11 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
59
+
@@ -744,9 +778,11 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
60
60
/**
61
61
* Sends an array of components as a single message to the specified screen position of this player
62
62
*
@@ -68,15 +68,15 @@ index 2c3e43ccf862c9de27811de0a49a2dee85e5d459..d39e5da511b8cc2239ad2eeb300762df
68
68
public default void sendMessage(net.md_5.bungee.api.ChatMessageType position, net.md_5.bungee.api.chat.BaseComponent... components) {
69
69
spigot().sendMessage(position, components);
70
70
}
71
-
@@ -1924,6 +1960,7 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
71
+
@@ -1929,6 +1965,7 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
72
72
/**
73
73
* Sends the component to the specified screen position of this player
74
74
*
75
75
+ * @deprecated This is unlikely the API you want to use. See {@link #sendActionBar(String)} for a more proper Action Bar API. This deprecated API may send unsafe items to the client.
76
76
* @param position the screen position
77
77
* @param component the components to send
78
78
* @deprecated use {@code sendMessage} methods that accept {@link net.kyori.adventure.text.Component}
79
-
@@ -1936,6 +1973,7 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
79
+
@@ -1941,6 +1978,7 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
80
80
/**
81
81
* Sends an array of components as a single message to the specified screen position of this player
0 commit comments