Require TestingDalamudApiLevel to be set for testing

This commit is contained in:
Haselnussbomber 2025-11-25 18:41:21 +01:00
parent ea07f41ab1
commit 1f30ce4c39
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1

View file

@ -362,6 +362,9 @@ internal class PluginManager : IInternalDisposableService
if (!this.configuration.DoPluginTest) if (!this.configuration.DoPluginTest)
return false; return false;
if (!manifest.TestingDalamudApiLevel.HasValue)
return false;
return manifest.IsTestingExclusive || manifest.IsAvailableForTesting; return manifest.IsTestingExclusive || manifest.IsAvailableForTesting;
} }