Browse Source

Added fix for new version parsing from config cache

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
1bb61a3712
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      IPA.Loader/Loader/PluginManager.cs

+ 1
- 1
IPA.Loader/Loader/PluginManager.cs View File

@ -294,7 +294,7 @@ namespace IPA.Loader
string pluginDir = BeatSaber.PluginsPath;
var gameVer = BeatSaber.GameVersion;
var lastVerS = SelfConfig.SelfConfigRef.Value.LastGameVersion;
var lastVer = lastVerS != null ? new SemVer.Version(lastVerS) : null;
var lastVer = lastVerS != null ? new SemVer.Version(lastVerS, true) : null;
if (lastVer != null && gameVer != lastVer)
{


Loading…
Cancel
Save