Skip to content

Commit

Permalink
chores: 同步 #4360 有关下载任务名称的修改
Browse files Browse the repository at this point in the history
  • Loading branch information
Pigeon0v0 committed Sep 22, 2024
1 parent bec86c0 commit 893f791
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,12 @@
RunInNewThread(
Sub()
Try
Dim Desc As String = If(Project.Type = CompType.ModPack, "整合包", If(Project.Type = CompType.Mod, "Mod ", "资源包"))
Dim Desc As String = "资源"
Select Case Project.Type
Case CompType.ModPack : Desc = "整合包"
Case CompType.Mod : Desc = "Mod "
Case CompType.ResourcePack : Desc = "资源包"
End Select
'确认默认保存位置
Dim DefaultFolder As String = Nothing
If Project.Type = CompType.Mod Then
Expand Down

0 comments on commit 893f791

Please sign in to comment.