mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: only hide installer plugins when api level smaller than current api level
This commit is contained in:
parent
04b83f9533
commit
5acdab58af
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ namespace Dalamud.Plugin
|
|||
if (pluginDefinition.IsHide)
|
||||
continue;
|
||||
|
||||
if (pluginDefinition.DalamudApiLevel != PluginManager.DALAMUD_API_LEVEL)
|
||||
if (pluginDefinition.DalamudApiLevel < PluginManager.DALAMUD_API_LEVEL)
|
||||
continue;
|
||||
|
||||
didAny = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue