check for testing api level in HasTestingVersion() instead

This commit is contained in:
goat 2024-07-03 12:20:38 +02:00
parent a4a3318a6e
commit 8d08f46fd7
2 changed files with 5 additions and 5 deletions

View file

@ -281,7 +281,8 @@ internal class PluginManager : IInternalDisposableService
if (hasTv)
{
return tv > av;
return tv > av &&
manifest.TestingDalamudApiLevel == DalamudApiLevel;
}
return false;