diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-02-20 20:55:26 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-04-07 18:46:09 +0200 |
commit | 35cfb41a9c8cf1328f3d2d14022cf51cbfc67f1f (patch) | |
tree | b315174ed647f46ce438ab07862caaca429e3cb4 /launcher/modplatform/ModAPI.h | |
parent | 74cdf5350de1649955814d6bcd596d8abfe9c5e2 (diff) | |
download | PrismLauncher-35cfb41a9c8cf1328f3d2d14022cf51cbfc67f1f.tar.gz PrismLauncher-35cfb41a9c8cf1328f3d2d14022cf51cbfc67f1f.tar.bz2 PrismLauncher-35cfb41a9c8cf1328f3d2d14022cf51cbfc67f1f.zip |
fix: check for Quilt as Fabric-compatible loader
Diffstat (limited to 'launcher/modplatform/ModAPI.h')
-rw-r--r-- | launcher/modplatform/ModAPI.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/ModAPI.h b/launcher/modplatform/ModAPI.h index ae6ac80f..1e38cf62 100644 --- a/launcher/modplatform/ModAPI.h +++ b/launcher/modplatform/ModAPI.h @@ -15,7 +15,7 @@ class ModAPI { virtual ~ModAPI() = default; // https://docs.curseforge.com/?http#tocS_ModLoaderType - enum ModLoaderType { Any = 0, Forge = 1, Cauldron = 2, LiteLoader = 3, Fabric = 4 }; + enum ModLoaderType { Any = 0, Forge = 1, Cauldron = 2, LiteLoader = 3, Fabric = 4, Quilt = 5 }; struct SearchArgs { int offset; |