Lenient GameVersion cleanup

This commit is contained in:
Raymond 2021-08-09 18:05:36 -04:00
parent 9199adb261
commit b2eb2b885f
2 changed files with 27 additions and 1 deletions

View file

@ -595,7 +595,7 @@ namespace Dalamud.Plugin.Internal
continue;
}
if (manifest.ApplicableVersion < this.dalamud.StartInfo.GameVersion)
if (manifest.ApplicableVersion < this.dalamud.StartInfo.GameVersion - TimeSpan.FromDays(90))
{
Log.Information($"Inapplicable version: cleaning up {versionDir.FullName}");
versionDir.Delete(true);