diff options
author | Jamie Mansfield <jmansfield@cadixdev.org> | 2020-11-14 18:06:27 +0000 |
---|---|---|
committer | Jamie Mansfield <jmansfield@cadixdev.org> | 2020-11-29 13:46:14 +0000 |
commit | b8c6a42f498823151a61b5d56c8cc587fd88c728 (patch) | |
tree | 638fd8dea39a31fe5144271f715d97702af8fd53 /api/logic/modplatform | |
parent | ed11d33054307be9a8f52689e2706085c3742420 (diff) | |
download | PrismLauncher-b8c6a42f498823151a61b5d56c8cc587fd88c728.tar.gz PrismLauncher-b8c6a42f498823151a61b5d56c8cc587fd88c728.tar.bz2 PrismLauncher-b8c6a42f498823151a61b5d56c8cc587fd88c728.zip |
NOISSUE Add sorting options to FTB pack install page
Diffstat (limited to 'api/logic/modplatform')
-rw-r--r-- | api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp b/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp index 912beb67..b532af7f 100644 --- a/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp +++ b/api/logic/modplatform/modpacksch/FTBPackInstallTask.cpp @@ -117,7 +117,7 @@ void PackInstallTask::install() if(file.serverOnly) continue; auto relpath = FS::PathCombine("minecraft", file.path, file.name); - auto path = FS::PathCombine(m_stagingPath , relpath); + auto path = FS::PathCombine(m_stagingPath, relpath); qDebug() << "Will download" << file.url << "to" << path; auto dl = Net::Download::makeFile(file.url, path); |