Skip to content

Commit

Permalink
fix game info version check error
Browse files Browse the repository at this point in the history
  • Loading branch information
Razzmatazzz committed Aug 14, 2023
1 parent 7df85c9 commit dc766ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RemnantSaveGuardian/GameInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public static JsonNode GetGameInfoJson()
if (File.Exists("game.json"))
{
var json = JsonNode.Parse(File.ReadAllText("game.json"));
if (json["version"].GetValue<int>() > embedJson["verson"].GetValue<int>())
if (json["version"].GetValue<int>() > embedJson["version"].GetValue<int>())
{
return json;
}
Expand Down
2 changes: 1 addition & 1 deletion RemnantSaveGuardian/RemnantSaveGuardian.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<UseWindowsForms>true</UseWindowsForms>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Assets\256.ico</ApplicationIcon>
<AssemblyVersion>1.0.1.13</AssemblyVersion>
<AssemblyVersion>1.0.1.14</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit dc766ca

Please sign in to comment.