Skip to content

Commit 447edff

Browse files
Glavoneveler
andauthored
[release/3.12] 种子地图、要塞地图、下届要塞地图和末地城地图支持 26.1 (#5887)
#5860 Co-authored-by: neveler <55753029+neveler@users.noreply.github.com>
1 parent f7024a4 commit 447edff

1 file changed

Lines changed: 12 additions & 6 deletions

File tree

HMCL/src/main/java/org/jackhuang/hmcl/util/ChunkBaseApp.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,27 @@ public final class ChunkBaseApp {
3131
private static final GameVersionNumber MIN_END_CITY_VERSION = GameVersionNumber.asGameVersion("1.13");
3232

3333
private static final String[] SEED_MAP_GAME_VERSIONS = {
34-
"1.21.9", "1.21.6", "1.21.5", "1.21.4", "1.21.2", "1.21", "1.20",
35-
"1.19.3", "1.19", "1.18", "1.17", "1.16", "1.15", "1.14", "1.13",
36-
"1.12", "1.11", "1.10", "1.9", "1.8", "1.7"
34+
"26.1", "1.21.9", "1.21.6", "1.21.5", "1.21.4", "1.21.2", "1.21",
35+
"1.20", "1.19.3", "1.19", "1.18", "1.17", "1.16", "1.15", "1.14",
36+
"1.13", "1.12", "1.11", "1.10", "1.9", "1.8", "1.7"
3737
};
3838

3939
public static final String[] STRONGHOLD_FINDER_GAME_VERSIONS = {
40-
"1.20", "1.19.3", "1.19", "1.18", "1.16", "1.13", "1.9", "1.7"
40+
"26.1", "1.21.9", "1.21.6", "1.21.5", "1.21.4", "1.21.2", "1.21",
41+
"1.20", "1.19.3", "1.19", "1.18", "1.17", "1.16", "1.15", "1.14",
42+
"1.13", "1.12", "1.11", "1.10", "1.9", "1.8", "1.7"
4143
};
4244

4345
public static final String[] NETHER_FORTRESS_GAME_VERSIONS = {
44-
"1.18", "1.16", "1.7"
46+
"26.1", "1.21.9", "1.21.6", "1.21.5", "1.21.4", "1.21.2", "1.21",
47+
"1.20", "1.19.3", "1.19", "1.18", "1.17", "1.16", "1.15", "1.14",
48+
"1.13", "1.12", "1.11", "1.10", "1.9", "1.8", "1.7"
4549
};
4650

4751
public static final String[] END_CITY_GAME_VERSIONS = {
48-
"1.19", "1.13"
52+
"26.1", "1.21.9", "1.21.6", "1.21.5", "1.21.4", "1.21.2", "1.21",
53+
"1.20", "1.19.3", "1.19", "1.18", "1.17", "1.16", "1.15", "1.14",
54+
"1.13"
4955
};
5056

5157
public static boolean isSupported(@NotNull World world) {

0 commit comments

Comments
 (0)