Added loaders check on versions load

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97
2023-08-23 12:52:51 +03:00
parent f8f9ffa118
commit e6ba2f4970
20 changed files with 89 additions and 89 deletions

View File

@ -44,11 +44,6 @@ class ModrinthAPI : public NetworkResourceAPI {
l << getModLoaderString(loader);
}
}
if ((types & ModPlatform::NeoForge) &&
(~types & ModPlatform::Forge)) // Add Forge if NeoForge is in use, if Forge isn't already there
l << getModLoaderString(ModPlatform::Forge);
if ((types & ModPlatform::Quilt) && (~types & ModPlatform::Fabric)) // Add Fabric if Quilt is in use, if Fabric isn't already there
l << getModLoaderString(ModPlatform::Fabric);
return l;
}