add Rift in the two places I missed
Signed-off-by: moehreag <moehreag@gmail.com>
This commit is contained in:
parent
100b209043
commit
98ae99c513
1 changed files with 3 additions and 1 deletions
|
@ -31,7 +31,7 @@ static const QMap<QString, IndexedVersionType::VersionType> s_indexed_version_ty
|
||||||
{ "alpha", IndexedVersionType::VersionType::Alpha }
|
{ "alpha", IndexedVersionType::VersionType::Alpha }
|
||||||
};
|
};
|
||||||
|
|
||||||
static const QList<ModLoaderType> loaderList = { NeoForge, Forge, Cauldron, LiteLoader, Quilt, Fabric, Babric, BTA, LegacyFabric, Ornithe };
|
static const QList<ModLoaderType> loaderList = { NeoForge, Forge, Cauldron, LiteLoader, Quilt, Fabric, Babric, BTA, LegacyFabric, Ornithe, Rift };
|
||||||
|
|
||||||
QList<ModLoaderType> modLoaderTypesToList(ModLoaderTypes flags)
|
QList<ModLoaderType> modLoaderTypesToList(ModLoaderTypes flags)
|
||||||
{
|
{
|
||||||
|
@ -167,6 +167,8 @@ auto getModLoaderFromString(QString type) -> ModLoaderType
|
||||||
return LegacyFabric;
|
return LegacyFabric;
|
||||||
if (type == "ornithe")
|
if (type == "ornithe")
|
||||||
return Ornithe;
|
return Ornithe;
|
||||||
|
if (type == "rift")
|
||||||
|
return Rift;
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue