diff options
author | Petr Mrázek <peterix@users.noreply.github.com> | 2020-11-30 00:13:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 00:13:41 +0100 |
commit | 58d168bda2fecb42debfb1ce047d6985f64d475d (patch) | |
tree | 8091a6268745cf0228ef1739a6e9172fcfd3e040 /api | |
parent | ed11d33054307be9a8f52689e2706085c3742420 (diff) | |
parent | 5eace10d51d862efa944418c4473fb053b5b04b4 (diff) | |
download | PrismLauncher-58d168bda2fecb42debfb1ce047d6985f64d475d.tar.gz PrismLauncher-58d168bda2fecb42debfb1ce047d6985f64d475d.tar.bz2 PrismLauncher-58d168bda2fecb42debfb1ce047d6985f64d475d.zip |
Merge pull request #3442 from jamierocks/ftb-sorts
NOISSUE Add sorting options to FTB pack install page
Diffstat (limited to 'api')
-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); |