From 2c7ce6da61022dd373e1c38a6398e70ea3cd0ef1 Mon Sep 17 00:00:00 2001 From: Aireil <33433913+Aireil@users.noreply.github.com> Date: Wed, 24 Aug 2022 09:14:19 +0200 Subject: [PATCH] fix: ignore IsHide (#973) --- Dalamud/Plugin/Internal/PluginManager.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dalamud/Plugin/Internal/PluginManager.cs b/Dalamud/Plugin/Internal/PluginManager.cs index 0fe745941..b879d8756 100644 --- a/Dalamud/Plugin/Internal/PluginManager.cs +++ b/Dalamud/Plugin/Internal/PluginManager.cs @@ -258,6 +258,8 @@ internal partial class PluginManager : IDisposable, IServiceType if (configuration.HiddenPluginInternalName.Contains(manifest.InternalName)) return false; + return true; // TODO temporary + // Hidden by manifest return !manifest.IsHide; }