From 3f6250074bb2e4e70727ffaa23beb8a4b84ca40b Mon Sep 17 00:00:00 2001 From: Ciilu <109708109+Ciilu@users.noreply.github.com> Date: Sun, 18 Jan 2026 16:37:01 +0800 Subject: [PATCH] UPDATE --- .../java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java index 858f3df22a..fb85008476 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/versions/DownloadListPage.java @@ -312,7 +312,7 @@ protected ModDownloadListPageSkin(DownloadListPage control) { JFXComboBox gameVersionField = new JFXComboBox<>(); gameVersionField.setMaxWidth(Double.MAX_VALUE); gameVersionField.setEditable(true); - gameVersionField.getItems().setAll(GameVersionNumber.getDefaultGameVersions()); + gameVersionField.getItems().setAll(Arrays.stream(GameVersionNumber.getDefaultGameVersions()).filter(version -> !version.endsWith("_unobfuscated")).toList()); Label lblGameVersion = new Label(i18n("world.game_version")); searchPane.addRow(rowIndex++, new Label(i18n("mods.name")), nameField, lblGameVersion, gameVersionField);