geforkt von Mirrors/Velocity
Update for Minecraft 1.13.1 support
Dieser Commit ist enthalten in:
Ursprung
d9c35a680a
Commit
ccb904eeb1
@ -17,11 +17,12 @@ public enum ProtocolConstants { ;
|
|||||||
public static final int MINECRAFT_1_12_1 = 338;
|
public static final int MINECRAFT_1_12_1 = 338;
|
||||||
public static final int MINECRAFT_1_12_2 = 340;
|
public static final int MINECRAFT_1_12_2 = 340;
|
||||||
public static final int MINECRAFT_1_13 = 393;
|
public static final int MINECRAFT_1_13 = 393;
|
||||||
|
public static final int MINECRAFT_1_13_1 = 401;
|
||||||
|
|
||||||
public static final int MINIMUM_GENERIC_VERSION = MINECRAFT_1_8;
|
public static final int MINIMUM_GENERIC_VERSION = MINECRAFT_1_8;
|
||||||
public static final int MAXIMUM_GENERIC_VERSION = MINECRAFT_1_13;
|
public static final int MAXIMUM_GENERIC_VERSION = MINECRAFT_1_13_1;
|
||||||
|
|
||||||
public static final String SUPPORTED_GENERIC_VERSION_STRING = "1.8-1.13";
|
public static final String SUPPORTED_GENERIC_VERSION_STRING = "1.8-1.13.1";
|
||||||
|
|
||||||
public static final ImmutableIntArray SUPPORTED_VERSIONS = ImmutableIntArray.of(
|
public static final ImmutableIntArray SUPPORTED_VERSIONS = ImmutableIntArray.of(
|
||||||
MINECRAFT_1_8,
|
MINECRAFT_1_8,
|
||||||
@ -35,7 +36,8 @@ public enum ProtocolConstants { ;
|
|||||||
MINECRAFT_1_12,
|
MINECRAFT_1_12,
|
||||||
MINECRAFT_1_12_1,
|
MINECRAFT_1_12_1,
|
||||||
MINECRAFT_1_12_2,
|
MINECRAFT_1_12_2,
|
||||||
MINECRAFT_1_13
|
MINECRAFT_1_13,
|
||||||
|
MINECRAFT_1_13_1
|
||||||
);
|
);
|
||||||
|
|
||||||
public static boolean isSupported(int version) {
|
public static boolean isSupported(int version) {
|
||||||
|
@ -166,6 +166,7 @@ public enum StateRegistry {
|
|||||||
LINKED_PROTOCOL_VERSIONS.put(MINECRAFT_1_9_4, ImmutableIntArray.of(MINECRAFT_1_10, MINECRAFT_1_11, MINECRAFT_1_11_1));
|
LINKED_PROTOCOL_VERSIONS.put(MINECRAFT_1_9_4, ImmutableIntArray.of(MINECRAFT_1_10, MINECRAFT_1_11, MINECRAFT_1_11_1));
|
||||||
LINKED_PROTOCOL_VERSIONS.put(MINECRAFT_1_12, ImmutableIntArray.of(MINECRAFT_1_12_1));
|
LINKED_PROTOCOL_VERSIONS.put(MINECRAFT_1_12, ImmutableIntArray.of(MINECRAFT_1_12_1));
|
||||||
LINKED_PROTOCOL_VERSIONS.put(MINECRAFT_1_12_1, ImmutableIntArray.of(MINECRAFT_1_12_2));
|
LINKED_PROTOCOL_VERSIONS.put(MINECRAFT_1_12_1, ImmutableIntArray.of(MINECRAFT_1_12_2));
|
||||||
|
LINKED_PROTOCOL_VERSIONS.put(MINECRAFT_1_13, ImmutableIntArray.of(MINECRAFT_1_13_1));
|
||||||
}
|
}
|
||||||
|
|
||||||
private final ProtocolConstants.Direction direction;
|
private final ProtocolConstants.Direction direction;
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren