diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-08-23 13:36:31 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-08-23 13:55:38 +0300 |
commit | 6178e5a975d7e967df0d3d45e402ac0fcfb4b43a (patch) | |
tree | 4c76f912b54b7923df34937e859dc514c1d2cb40 /launcher/modplatform | |
parent | aa065f2b5173dc56614ac45649ada06b74681a53 (diff) | |
download | PrismLauncher-6178e5a975d7e967df0d3d45e402ac0fcfb4b43a.tar.gz PrismLauncher-6178e5a975d7e967df0d3d45e402ac0fcfb4b43a.tar.bz2 PrismLauncher-6178e5a975d7e967df0d3d45e402ac0fcfb4b43a.zip |
reverted change for optional
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/modplatform')
-rw-r--r-- | launcher/modplatform/flame/FileResolvingTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/flame/FileResolvingTask.cpp b/launcher/modplatform/flame/FileResolvingTask.cpp index b13274a6..463014b6 100644 --- a/launcher/modplatform/flame/FileResolvingTask.cpp +++ b/launcher/modplatform/flame/FileResolvingTask.cpp @@ -154,7 +154,7 @@ void Flame::FileResolvingTask::modrinthCheckFinished() // If there's more than one mod loader for this version, we can't know for sure // which file is relative to each loader, so it's best to not use any one and // let the user download it manually. - if (std::bitset<8>(file.loaders.toInt()).count() <= 1) { + if (std::bitset<8>(file.loaders).count() <= 1) { out->url = file.downloadUrl; qDebug() << "Found alternative on modrinth " << out->fileName; } else { |