diff options
author | seth <getchoo@tuta.io> | 2023-07-10 16:31:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 16:31:43 -0400 |
commit | 640aaa8c23d714ce17bc8e78754af6219abc6466 (patch) | |
tree | c73ef0a82c33cd8fa1b4b8ba85b5dabf9ae4bf60 /launcher/minecraft/mod/tasks | |
parent | 99ba02afb6a7af1bc0800552338ab811b027eb9e (diff) | |
parent | 0c6362f28d1caec4d256c538d2874b226390ad85 (diff) | |
download | PrismLauncher-640aaa8c23d714ce17bc8e78754af6219abc6466.tar.gz PrismLauncher-640aaa8c23d714ce17bc8e78754af6219abc6466.tar.bz2 PrismLauncher-640aaa8c23d714ce17bc8e78754af6219abc6466.zip |
Merge pull request #1331 from TheKodeToad/hungry-trash
Fix updating trashing resources
Diffstat (limited to 'launcher/minecraft/mod/tasks')
-rw-r--r-- | launcher/minecraft/mod/tasks/ModFolderLoadTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/mod/tasks/ModFolderLoadTask.cpp b/launcher/minecraft/mod/tasks/ModFolderLoadTask.cpp index 3677a1dc..ef353c70 100644 --- a/launcher/minecraft/mod/tasks/ModFolderLoadTask.cpp +++ b/launcher/minecraft/mod/tasks/ModFolderLoadTask.cpp @@ -103,7 +103,7 @@ void ModFolderLoadTask::executeTask() while (iter.hasNext()) { auto mod = iter.next().value(); if (mod->status() == ModStatus::NotInstalled) { - mod->destroy(m_index_dir, false); + mod->destroy(m_index_dir, false, false); iter.remove(); } } |