From 1f30ce4c396287bf504fc2228aaf8f14eefa150d Mon Sep 17 00:00:00 2001 From: Haselnussbomber Date: Tue, 25 Nov 2025 18:41:21 +0100 Subject: [PATCH] Require TestingDalamudApiLevel to be set for testing --- Dalamud/Plugin/Internal/PluginManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dalamud/Plugin/Internal/PluginManager.cs b/Dalamud/Plugin/Internal/PluginManager.cs index fd5c048c7..e2eded57c 100644 --- a/Dalamud/Plugin/Internal/PluginManager.cs +++ b/Dalamud/Plugin/Internal/PluginManager.cs @@ -362,6 +362,9 @@ internal class PluginManager : IInternalDisposableService if (!this.configuration.DoPluginTest) return false; + if (!manifest.TestingDalamudApiLevel.HasValue) + return false; + return manifest.IsTestingExclusive || manifest.IsAvailableForTesting; }