Deprecate ChatVisibility#UNKNOWN (#11683)
This commit is contained in:
parent
5ab678947f
commit
47f2071350
2 changed files with 10 additions and 4 deletions
|
@ -6,10 +6,10 @@ Subject: [PATCH] Add Player Client Options API
|
|||
|
||||
diff --git a/src/main/java/com/destroystokyo/paper/ClientOption.java b/src/main/java/com/destroystokyo/paper/ClientOption.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..7af28d6ba27c97a87ffbb9db03a5c340277853cc
|
||||
index 0000000000000000000000000000000000000000..290bde7050f43cb5cd6c0cea9eb7a05297536dec
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/com/destroystokyo/paper/ClientOption.java
|
||||
@@ -0,0 +1,70 @@
|
||||
@@ -0,0 +1,76 @@
|
||||
+package com.destroystokyo.paper;
|
||||
+
|
||||
+import net.kyori.adventure.translation.Translatable;
|
||||
|
@ -44,6 +44,12 @@ index 0000000000000000000000000000000000000000..7af28d6ba27c97a87ffbb9db03a5c340
|
|||
+ FULL("full"),
|
||||
+ SYSTEM("system"),
|
||||
+ HIDDEN("hidden"),
|
||||
+ /**
|
||||
+ * @deprecated no longer used anymore since 1.15.2, the value fallback
|
||||
+ * to the default value of the setting when unknown on the server.
|
||||
+ * In this case {@link #FULL} will be returned.
|
||||
+ */
|
||||
+ @Deprecated(since = "1.15.2", forRemoval = true)
|
||||
+ UNKNOWN("unknown");
|
||||
+
|
||||
+ public static final Index<String, ChatVisibility> NAMES = Index.create(ChatVisibility.class, chatVisibility -> chatVisibility.name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue