2024-02-24 18:21:31 +01:00
|
|
|
From a7831360e8f8300b9aa7d3f340b609991a8f6150 Mon Sep 17 00:00:00 2001
|
2018-10-27 23:18:13 +02:00
|
|
|
From: Troy Frew <fuzzy_bot@arenaga.me>
|
|
|
|
Date: Tue, 15 Nov 2016 09:07:51 -0500
|
|
|
|
Subject: [PATCH] Fixup ProtocolConstants
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
|
2024-02-24 18:21:31 +01:00
|
|
|
index fdfa1480..e158a2d3 100644
|
2018-10-27 23:18:13 +02:00
|
|
|
--- a/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
|
|
|
|
+++ b/protocol/src/main/java/net/md_5/bungee/protocol/ProtocolConstants.java
|
2024-02-24 18:21:31 +01:00
|
|
|
@@ -117,6 +117,16 @@ public class ProtocolConstants
|
2021-05-15 03:46:23 +02:00
|
|
|
SUPPORTED_VERSION_IDS = supportedVersionIds.build();
|
|
|
|
}
|
2018-10-27 23:18:13 +02:00
|
|
|
|
|
|
|
+ public static final boolean isBeforeOrEq(int before, int other)
|
|
|
|
+ {
|
|
|
|
+ return before <= other;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static final boolean isAfterOrEq(int after, int other)
|
|
|
|
+ {
|
|
|
|
+ return after >= other;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
public enum Direction
|
|
|
|
{
|
|
|
|
|
|
|
|
--
|
2024-02-24 18:21:31 +01:00
|
|
|
2.43.0.windows.1
|
2018-10-27 23:18:13 +02:00
|
|
|
|