From 31a4f895a094458770e44862f5516fd134781dfe Mon Sep 17 00:00:00 2001 From: goaaats Date: Sun, 8 Jan 2023 00:13:56 +0100 Subject: [PATCH] fix: don't show plugin as decommissioned when orphaned --- .../Internal/Windows/PluginInstaller/PluginInstallerWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index c603f8054..c6297ffa1 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -1991,7 +1991,7 @@ internal class PluginInstallerWindow : Window, IDisposable } // Out of service - if (plugin.IsDecommissioned) + if (plugin.IsDecommissioned && !plugin.IsOrphaned) { label += Locs.PluginTitleMod_NoService; trouble = true;