add LocalPlugin.IsOutdated shortcut

This commit is contained in:
Raymond 2021-09-20 16:32:01 -04:00
parent c34d4dfd87
commit cb1761f998
3 changed files with 9 additions and 4 deletions

View file

@ -561,7 +561,7 @@ namespace Dalamud.Plugin.Internal
Log.Information(ex, $"Dev plugin failed to load, adding anyways: {dllFile.Name}");
plugin.Disable(); // Disable here, otherwise you can't enable+load later
}
else if (plugin.Manifest.DalamudApiLevel < DalamudApiLevel)
else if (plugin.IsOutdated)
{
// Out of date plugins get added so they can be updated.
Log.Information(ex, $"Plugin was outdated, adding anyways: {dllFile.Name}");