diff --git a/launcher/ui/pages/modplatform/import_ftb/Model.cpp b/launcher/ui/pages/modplatform/import_ftb/Model.cpp index 9c336961..95a5c445 100644 --- a/launcher/ui/pages/modplatform/import_ftb/Model.cpp +++ b/launcher/ui/pages/modplatform/import_ftb/Model.cpp @@ -93,6 +93,9 @@ QString getFTBAPath() { #endif QString getFTBASettingsPath() { + QString returnpath = FS::PathCombine(getFTBAPath(), "storage/settings.json"); + if (QFileInfo::exists(returnpath)) + return returnpath; return FS::PathCombine(getFTBAPath(), "bin/settings.json"); }