Adding 1.15 and 1.15.1

This commit is contained in:
Marc Baloup 2019-12-26 17:56:42 +01:00
parent ea9bfd1270
commit 781d291f86
1 changed files with 5 additions and 2 deletions

View File

@ -31,7 +31,9 @@ public enum MinecraftVersion {
v1_14_1(480, "1.14.1"),
v1_14_2(485, "1.14.2"),
v1_14_3(490, "1.14.3"),
v1_14_4(498, "1.14.4");
v1_14_4(498, "1.14.4"),
v1_15(573, "1.15"),
v1_15_1(575, "1.15.1");
// IMPORTANT: don't forget to update the versionMergeDisplay value when adding a new version;
private static Map<EnumSet<MinecraftVersion>, List<String>> versionMergeDisplay;
@ -93,7 +95,8 @@ public enum MinecraftVersion {
versionMergeDisplay.put(EnumSet.of(v1_14_3, v1_14_4),
ImmutableList.of("1.14.3", "1.14.4"));
versionMergeDisplay.put(EnumSet.of(v1_15, v1_15_1),
ImmutableList.of("1.15.x"));
}