From bddc61ccab94eaba65753df0d985279c22d7207b Mon Sep 17 00:00:00 2001 From: burningtnt Date: Sat, 20 Sep 2025 20:10:29 +0800 Subject: [PATCH] Feature: Install Terracotta from local package while downloading. --- .../jackhuang/hmcl/ui/terracotta/TerracottaControllerPage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HMCL/src/main/java/org/jackhuang/hmcl/ui/terracotta/TerracottaControllerPage.java b/HMCL/src/main/java/org/jackhuang/hmcl/ui/terracotta/TerracottaControllerPage.java index c35fe6254..f81eb8510 100644 --- a/HMCL/src/main/java/org/jackhuang/hmcl/ui/terracotta/TerracottaControllerPage.java +++ b/HMCL/src/main/java/org/jackhuang/hmcl/ui/terracotta/TerracottaControllerPage.java @@ -188,7 +188,7 @@ public class TerracottaControllerPage extends StackPane { } else if (state instanceof TerracottaState.Preparing) { statusProperty.set(i18n("terracotta.status.preparing")); progressProperty.bind(((TerracottaState.Preparing) state).progressProperty()); - nodesProperty.setAll(); + nodesProperty.setAll(getThirdPartyDownloadNodes()); } else if (state instanceof TerracottaState.Launching) { statusProperty.set(i18n("terracotta.status.launching")); progressProperty.set(-1);