From e177117a8f7ff30a6fae49a6dc272a7a6d0b1571 Mon Sep 17 00:00:00 2001 From: Evan Goode Date: Sat, 26 Oct 2024 19:08:36 -0400 Subject: [PATCH] Fix FTB import goof --- launcher/modplatform/modpacksch/FTBPackInstallTask.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp index 8482d1069..d4faf6284 100644 --- a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp +++ b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp @@ -184,7 +184,7 @@ void PackInstallTask::onResolveModsSucceeded() VersionFile& local_file = m_version.files[index]; // First check for blocked mods - if (!results_file.version.downloadUrl.isEmpty()) { + if (results_file.version.downloadUrl.isEmpty()) { BlockedMod blocked_mod; blocked_mod.name = local_file.name; blocked_mod.websiteUrl = results_file.pack.websiteUrl;