Skip to content

Commit 681e55f

Browse files
committed
Fix versioning notification if on a newer version than published.
1 parent 81af898 commit 681e55f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/ModManifest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public EVersionStatus UpToDate()
2525
if (Version == null || RemoteManifest == null || RemoteManifest.Version == null)
2626
return EVersionStatus.Not_Specified;
2727

28-
return Version.CompareTo(RemoteManifest.Version) == 0 ? EVersionStatus.Up_To_Date : EVersionStatus.Not_Up_To_Date;
28+
return Version.CompareTo(RemoteManifest.Version) >= 0 ? EVersionStatus.Up_To_Date : EVersionStatus.Not_Up_To_Date;
2929
}
3030

3131
public EVersionComparisonResult CurrentVersionCompatibleWithGameVersion()

0 commit comments

Comments
 (0)