aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/flame
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-08-06 21:05:51 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2023-08-15 11:06:13 +0200
commit3a0aa353cc6c0c501a1a4cf1a3fa7600c798235a (patch)
tree3ff32a71469303d4f2fefe3f1f3508d53124f3c7 /launcher/modplatform/flame
parent8f5bb982cd27dd9158b63d826769c168455a139b (diff)
downloadPrismLauncher-3a0aa353cc6c0c501a1a4cf1a3fa7600c798235a.tar.gz
PrismLauncher-3a0aa353cc6c0c501a1a4cf1a3fa7600c798235a.tar.bz2
PrismLauncher-3a0aa353cc6c0c501a1a4cf1a3fa7600c798235a.zip
feat: add NeoForge to ModLoaderType
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/modplatform/flame')
-rw-r--r--launcher/modplatform/flame/FlameAPI.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/launcher/modplatform/flame/FlameAPI.h b/launcher/modplatform/flame/FlameAPI.h
index 49bc316f..33b1bed7 100644
--- a/launcher/modplatform/flame/FlameAPI.h
+++ b/launcher/modplatform/flame/FlameAPI.h
@@ -46,7 +46,9 @@ class FlameAPI : public NetworkResourceAPI {
return 4;
// TODO: remove this once Quilt drops official Fabric support
if (loaders & Quilt) // NOTE: Most if not all Fabric mods should work *currently*
- return 4; // Quilt would probably be 5
+ return 4; // FIXME: implement multiple loaders filter
+ if (loaders & NeoForge)
+ return 6;
return 0;
}