mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-29 11:59:21 +01:00
fix: don't show plugin as decommissioned when orphaned
This commit is contained in:
parent
fc9c94299f
commit
31a4f895a0
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue