Skip to content
This repository has been archived by the owner on Aug 7, 2022. It is now read-only.

Commit

Permalink
Fixed GetOBMMVersion not having a revision version
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Nov 30, 2019
1 parent 549853a commit 2d51030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMODFramework/Scripting/DotNetScriptFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public bool DataFileExists(string path)

public Version GetOBMMVersion()
{
return new Version(Framework.MajorVersion, Framework.MinorVersion, Framework.BuildNumber);
return new Version(Framework.MajorVersion, Framework.MinorVersion, Framework.BuildNumber, 0);
}

public Version GetOBSEVersion()
Expand Down

0 comments on commit 2d51030

Please sign in to comment.