We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81af898 commit 681e55fCopy full SHA for 681e55f
Source/ModManifest.cs
@@ -25,7 +25,7 @@ public EVersionStatus UpToDate()
25
if (Version == null || RemoteManifest == null || RemoteManifest.Version == null)
26
return EVersionStatus.Not_Specified;
27
28
- return Version.CompareTo(RemoteManifest.Version) == 0 ? EVersionStatus.Up_To_Date : EVersionStatus.Not_Up_To_Date;
+ return Version.CompareTo(RemoteManifest.Version) >= 0 ? EVersionStatus.Up_To_Date : EVersionStatus.Not_Up_To_Date;
29
}
30
31
public EVersionComparisonResult CurrentVersionCompatibleWithGameVersion()
0 commit comments