mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +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
|
// Out of service
|
||||||
if (plugin.IsDecommissioned)
|
if (plugin.IsDecommissioned && !plugin.IsOrphaned)
|
||||||
{
|
{
|
||||||
label += Locs.PluginTitleMod_NoService;
|
label += Locs.PluginTitleMod_NoService;
|
||||||
trouble = true;
|
trouble = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue