fix editions for launcher

This commit is contained in:
CWX
2025-01-16 14:55:12 +00:00
parent f50666dea1
commit 07f97345fe
+1
View File
@@ -63,6 +63,7 @@ public class LauncherController
// Get all possible profile types + filter out any that are blacklisted
var profiles = typeof(ProfileTemplates).GetProperties()
.Where(p => p.CanWrite)
.Select(p => p.GetJsonName())
.Where(profileName => !_coreConfig.Features.CreateNewProfileTypesBlacklist.Contains(profileName))
.ToList();