1
0

Fix resource pack projects with multiple loaders not finding a release in Download modal (#4734)

This commit is contained in:
Prospector
2025-11-07 11:54:59 -08:00
committed by GitHub
parent 608ab988f0
commit 8182b795de

View File

@@ -1411,7 +1411,7 @@ const filteredVersions = computed(() => {
return versions.value.filter(
(x) =>
x.game_versions.includes(currentGameVersion.value) &&
x.loaders.includes(currentPlatform.value),
(x.loaders.includes(currentPlatform.value) || project.value.project_type === 'resourcepack'),
)
})