aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0260-Expose-protocol-version.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/api/0260-Expose-protocol-version.patch')
-rw-r--r--patches/api/0260-Expose-protocol-version.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/patches/api/0260-Expose-protocol-version.patch b/patches/api/0260-Expose-protocol-version.patch
new file mode 100644
index 0000000000..ac67e3a922
--- /dev/null
+++ b/patches/api/0260-Expose-protocol-version.patch
@@ -0,0 +1,23 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Nassim Jahnke <[email protected]>
+Date: Fri, 26 Mar 2021 11:23:27 +0100
+Subject: [PATCH] Expose protocol version
+
+
+diff --git a/src/main/java/org/bukkit/UnsafeValues.java b/src/main/java/org/bukkit/UnsafeValues.java
+index 1b2b0e6d10393b4f4d0716256aa4c87b57affbe1..8635846c9f672e39f0929eec7bf83b22536ed284 100644
+--- a/src/main/java/org/bukkit/UnsafeValues.java
++++ b/src/main/java/org/bukkit/UnsafeValues.java
+@@ -178,5 +178,12 @@ public interface UnsafeValues {
+ * Just don't use it.
+ */
+ @org.jetbrains.annotations.NotNull String getMainLevelName();
++
++ /**
++ * Returns the server's protocol version.
++ *
++ * @return the server's protocol version
++ */
++ int getProtocolVersion();
+ // Paper end
+ }