From 8e2d20f23cc3a5dd65c32bc9b838cfc2bdd6d702 Mon Sep 17 00:00:00 2001 From: Raymond Date: Tue, 13 Jul 2021 10:30:11 -0400 Subject: [PATCH] Disable cleanup check when LoadAllApiLevels is set --- Dalamud/Plugin/Internal/PluginManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Plugin/Internal/PluginManager.cs b/Dalamud/Plugin/Internal/PluginManager.cs index b7d7ca948..19a918aea 100644 --- a/Dalamud/Plugin/Internal/PluginManager.cs +++ b/Dalamud/Plugin/Internal/PluginManager.cs @@ -558,7 +558,7 @@ namespace Dalamud.Plugin.Internal continue; } - if (manifest.DalamudApiLevel < DalamudApiLevel) + if (manifest.DalamudApiLevel < DalamudApiLevel && !this.dalamud.Configuration.LoadAllApiLevels) { Log.Information($"Lower API: cleaning up {versionDir.FullName}"); versionDir.Delete(true);