2017-10-29 18:12:12 +01:00
|
|
|
From 2d5662b851b99d412b9675c75301ac484041515a Mon Sep 17 00:00:00 2001
|
2016-11-15 16:32:02 +01: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
|
2017-10-29 18:12:12 +01:00
|
|
|
index ac9adf33..a9398eef 100644
|
2016-11-15 16:32:02 +01: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
|
2017-10-29 18:12:12 +01:00
|
|
|
@@ -24,7 +24,8 @@ public class ProtocolConstants
|
2017-05-15 09:01:52 +02:00
|
|
|
"1.11.x",
|
|
|
|
"1.12.x"
|
2016-11-15 16:32:02 +01:00
|
|
|
);
|
|
|
|
- public static final List<Integer> SUPPORTED_VERSION_IDS = Arrays.asList( ProtocolConstants.MINECRAFT_1_8,
|
|
|
|
+ public static final List<Integer> SUPPORTED_VERSION_IDS = Arrays.asList(
|
|
|
|
+ ProtocolConstants.MINECRAFT_1_8,
|
|
|
|
ProtocolConstants.MINECRAFT_1_9,
|
|
|
|
ProtocolConstants.MINECRAFT_1_9_1,
|
|
|
|
ProtocolConstants.MINECRAFT_1_9_2,
|
2017-10-29 18:12:12 +01:00
|
|
|
@@ -37,6 +38,16 @@ public class ProtocolConstants
|
|
|
|
ProtocolConstants.MINECRAFT_1_12_2
|
2016-11-15 16:32:02 +01: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
|
|
|
|
{
|
|
|
|
|
|
|
|
--
|
2017-10-29 18:12:12 +01:00
|
|
|
2.14.2
|
2016-11-15 16:32:02 +01:00
|
|
|
|