dev plugins are now allowed to be in profiles

This commit is contained in:
goaaats 2024-01-19 23:43:24 +01:00
parent 57b8a5d932
commit af2f0f290f
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -2555,7 +2555,7 @@ internal class PluginInstallerWindow : Window, IDisposable
var profileManager = Service<ProfileManager>.Get();
var config = Service<DalamudConfiguration>.Get();
var applicableForProfiles = plugin.Manifest.SupportsProfiles && !plugin.IsDev;
var applicableForProfiles = plugin.Manifest.SupportsProfiles /*&& !plugin.IsDev*/;
var profilesThatWantThisPlugin = profileManager.Profiles
.Where(x => x.WantsPlugin(plugin.Manifest.WorkingPluginId) != null)
.ToArray();