Paper/patches/api/0263-Expose-protocol-versio...

24 lines
817 B
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Nassim Jahnke <nassim@njahnke.dev>
2021-06-11 14:02:28 +02:00
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
2024-04-27 01:43:59 +02:00
index 5de86f8cd3cc7f7e8ebc4a22d3921273378704f2..a874faec93468c83fc475b60629fc36f933bd11c 100644
2021-06-11 14:02:28 +02:00
--- a/src/main/java/org/bukkit/UnsafeValues.java
+++ b/src/main/java/org/bukkit/UnsafeValues.java
2024-04-27 01:43:59 +02:00
@@ -169,5 +169,12 @@ public interface UnsafeValues {
* Just don't use it.
2021-06-11 14:02:28 +02:00
*/
2024-04-27 01:43:59 +02:00
@org.jetbrains.annotations.NotNull String getMainLevelName();
2021-06-11 14:02:28 +02:00
+
+ /**
+ * Returns the server's protocol version.
+ *
+ * @return the server's protocol version
+ */
+ int getProtocolVersion();
// Paper end
}