diff options
author | timoreo <timo.oreo34@gmail.com> | 2022-01-18 12:28:55 +0100 |
---|---|---|
committer | timoreo <timo.oreo34@gmail.com> | 2022-01-18 12:28:55 +0100 |
commit | affc2521aaa282a6ba7f051dd02594500add4e6a (patch) | |
tree | c809f9e78b4d32cf07768bff472ebef30199ac1e /launcher/modplatform/flame/FlameModIndex.cpp | |
parent | 975f77756d7ffeb94fb14355b622ee850e04bd8b (diff) | |
download | PrismLauncher-affc2521aaa282a6ba7f051dd02594500add4e6a.tar.gz PrismLauncher-affc2521aaa282a6ba7f051dd02594500add4e6a.tar.bz2 PrismLauncher-affc2521aaa282a6ba7f051dd02594500add4e6a.zip |
Various fixes
Diffstat (limited to 'launcher/modplatform/flame/FlameModIndex.cpp')
-rw-r--r-- | launcher/modplatform/flame/FlameModIndex.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/launcher/modplatform/flame/FlameModIndex.cpp b/launcher/modplatform/flame/FlameModIndex.cpp index d298ae83..ca8f7fd7 100644 --- a/launcher/modplatform/flame/FlameModIndex.cpp +++ b/launcher/modplatform/flame/FlameModIndex.cpp @@ -76,13 +76,14 @@ void FlameMod::loadIndexedPackVersions(FlameMod::IndexedPack & pack, QJsonArray break; } }else{ + //this cannot check for the recent mcmod.toml formats if(fname == "mcmod.info"){ valid = true; break; } } } - if(!valid){ + if(!valid || !hasFabric){ continue; } |