From 17fe11e8f5ed7cbd6b7dc8540c559a485a02c641 Mon Sep 17 00:00:00 2001 From: Glavo Date: Wed, 9 Feb 2022 10:50:01 +0800 Subject: [PATCH] Download Zulu by default --- HMCLauncher/HMCL/java-download.ps1 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/HMCLauncher/HMCL/java-download.ps1 b/HMCLauncher/HMCL/java-download.ps1 index 856478b1f..4e56d851f 100644 --- a/HMCLauncher/HMCL/java-download.ps1 +++ b/HMCLauncher/HMCL/java-download.ps1 @@ -36,12 +36,11 @@ if ($chinese) { $useMirrorCheckBox = New-Object System.Windows.Forms.CheckBox $useMirrorCheckBox.AutoSize = $true $useMirrorCheckBox.Anchor = [System.Windows.Forms.AnchorStyles]::Right +$useMirrorCheckBox.Checked = $false if ($chinese) { - $useMirrorCheckBox.Text = '启用中国大陆下载加速' - $useMirrorCheckBox.Checked = $true + $useMirrorCheckBox.Text = '启用中国大陆下载加速(无法正常下载时尝试这个选项)' } else { $useMirrorCheckBox.Text = 'Enable download acceleration for Chinese mainland' - $useMirrorCheckBox.Checked = $false } $selectButtonPanel = New-Object System.Windows.Forms.FlowLayoutPanel