From 8724ff13a1eae53b729cf72c96b7e5e8a946f311 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 8 Dec 2020 09:11:10 +0100 Subject: [PATCH] fix: of course also do that in PluginRepository --- Dalamud/Plugin/PluginRepository.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/PluginRepository.cs b/Dalamud/Plugin/PluginRepository.cs index 04245216f..7a067c57c 100644 --- a/Dalamud/Plugin/PluginRepository.cs +++ b/Dalamud/Plugin/PluginRepository.cs @@ -175,7 +175,7 @@ namespace Dalamud.Plugin continue; } - if (remoteInfo.DalamudApiLevel != PluginManager.DALAMUD_API_LEVEL) { + if (remoteInfo.DalamudApiLevel < PluginManager.DALAMUD_API_LEVEL) { Log.Information("Has not applicable API level: {0}", info.Name); continue; }