aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0278-Expose-protocol-version.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/api/0278-Expose-protocol-version.patch')
-rw-r--r--patches/api/0278-Expose-protocol-version.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/patches/api/0278-Expose-protocol-version.patch b/patches/api/0278-Expose-protocol-version.patch
new file mode 100644
index 0000000000..c7d7976e04
--- /dev/null
+++ b/patches/api/0278-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 9616630817a3a302636a0d2fe8076cb7244b7996..eadba6454530724619872034f6e680b4603b8a69 100644
+--- a/src/main/java/org/bukkit/UnsafeValues.java
++++ b/src/main/java/org/bukkit/UnsafeValues.java
+@@ -179,5 +179,12 @@ public interface UnsafeValues {
+ * @return the itemstack rarity
+ */
+ public io.papermc.paper.inventory.ItemRarity getItemStackRarity(ItemStack itemStack);
++
++ /**
++ * Returns the server's protocol version.
++ *
++ * @return the server's protocol version
++ */
++ int getProtocolVersion();
+ // Paper end
+ }