2022-07-30 18:28:24 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
|
|
Date: Sat, 30 Jul 2022 11:23:11 -0400
|
|
|
|
Subject: [PATCH] Custom Chat Completion Suggestions API
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
2024-04-23 19:02:08 +02:00
|
|
|
index 25064aafd5871a7168e8a0ba3e87d6de89e2b083..ac9227472443ecb819cc7480a217cd78a98a9b35 100644
|
2022-07-30 18:28:24 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
2024-04-23 19:02:08 +02:00
|
|
|
@@ -3352,6 +3352,31 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
2022-07-30 18:28:24 +02:00
|
|
|
void sendOpLevel(byte level);
|
2023-11-04 21:20:13 +01:00
|
|
|
// Paper end - sendOpLevel API
|
|
|
|
|
|
|
|
+ // Paper start - custom chat completions API
|
2022-07-30 18:28:24 +02:00
|
|
|
+ /**
|
|
|
|
+ * Adds custom chat completion suggestions that the client will
|
|
|
|
+ * suggest when typing in chat.
|
|
|
|
+ *
|
|
|
|
+ * @param completions custom completions
|
2023-06-27 10:18:59 +02:00
|
|
|
+ * @deprecated use {@link #addCustomChatCompletions(Collection)}
|
2022-07-30 18:28:24 +02:00
|
|
|
+ */
|
2023-06-27 10:18:59 +02:00
|
|
|
+ @Deprecated(since = "1.20.1")
|
2022-07-30 18:28:24 +02:00
|
|
|
+ void addAdditionalChatCompletions(@NotNull java.util.Collection<String> completions);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Removes custom chat completion suggestions that the client
|
|
|
|
+ * suggests when typing in chat.
|
|
|
|
+ *
|
|
|
|
+ * Note: this only applies to previously added custom completions,
|
|
|
|
+ * online player names are always suggested and cannot be removed.
|
|
|
|
+ *
|
|
|
|
+ * @param completions custom completions
|
2023-06-27 10:18:59 +02:00
|
|
|
+ * @deprecated use {@link #addCustomChatCompletions(Collection)}
|
2022-07-30 18:28:24 +02:00
|
|
|
+ */
|
2023-06-27 10:18:59 +02:00
|
|
|
+ @Deprecated(since = "1.20.1")
|
2022-07-30 18:28:24 +02:00
|
|
|
+ void removeAdditionalChatCompletions(@NotNull java.util.Collection<String> completions);
|
2023-11-04 21:20:13 +01:00
|
|
|
+ // Paper end - custom chat completions API
|
|
|
|
+
|
2022-07-30 18:28:24 +02:00
|
|
|
// Spigot start
|
2023-11-04 21:20:13 +01:00
|
|
|
public class Spigot extends Entity.Spigot {
|
|
|
|
|