This branch/commit is only useful to those who purely use a clean Bukkit/Spigot/Paper API and does not use NMS/OBC references. This will let you start updating your plugin to the latest 1.13 builds of Bukkit Preview (4 as of now) Note that this release is not final!!! API breakages may occur! It is up to you if you find use out of this work.
30 lines
1006 B
Diff
30 lines
1006 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Smove <jan@lavasurvival.net>
|
|
Date: Sat, 1 Feb 2014 18:10:49 +1100
|
|
Subject: [PATCH] Implement Locale Getter for Players
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
|
index 226aa6b6..e021495e 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -0,0 +0,0 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
|
|
{
|
|
throw new UnsupportedOperationException( "Not supported yet." );
|
|
}
|
|
+
|
|
+ /**
|
|
+ * Gets player locale language.
|
|
+ *
|
|
+ * @return the player's client language settings
|
|
+ * @deprecated Use {@link Player#getLocale()}
|
|
+ */
|
|
+ @Deprecated
|
|
+ public String getLocale()
|
|
+ {
|
|
+ throw new UnsupportedOperationException( "Not supported yet." );
|
|
+ }
|
|
}
|
|
|
|
@Override
|
|
--
|