mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: only hide testing plugins if testing is unavailable
This commit is contained in:
parent
df42113992
commit
5a9f45c5bb
1 changed files with 1 additions and 1 deletions
|
|
@ -120,7 +120,7 @@ namespace Dalamud.Plugin
|
|||
|
||||
if (this.dalamud.Configuration.DoPluginTest && pluginDefinition.IsTestingExclusive) {
|
||||
isTestingAvailable = true;
|
||||
} else {
|
||||
} else if (!this.dalamud.Configuration.DoPluginTest && pluginDefinition.IsTestingExclusive) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue