mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-15 20:37:42 +01:00
feat: still show outdated plugins with a warning
This commit is contained in:
parent
dd41c77148
commit
83edcc583f
2 changed files with 24 additions and 0 deletions
|
|
@ -469,6 +469,10 @@ namespace Dalamud.Plugin.Internal
|
|||
{
|
||||
Log.Information(ex, $"Dev plugin failed to load, adding anyways: {dllFile.Name}");
|
||||
}
|
||||
else if (plugin.Manifest.DalamudApiLevel < DalamudApiLevel)
|
||||
{
|
||||
Log.Information(ex, $"Plugin was outdated, adding anyways: {dllFile.Name}");
|
||||
}
|
||||
else
|
||||
{
|
||||
PluginLocations.Remove(plugin.AssemblyName.FullName);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue