Skip to content

Commit

Permalink
fixed error messages in storage helper (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
amazingalek authored Apr 12, 2020
1 parent 8f27b7f commit d6510ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion OWML.Launcher/OWML.Manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"author": "Alek",
"name": "OWML",
"uniqueName": "Alek.OWML",
"version": "0.3.43"
"version": "0.3.44"
}
4 changes: 2 additions & 2 deletions OWML.ModHelper/ModStorage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public T Load<T>(string filename)
}
catch (Exception ex)
{
_console.WriteLine($"Error while saving {filename}: {ex}");
_console.WriteLine($"Error while loading {path}: {ex}");
return default;
}
}
Expand All @@ -45,7 +45,7 @@ public void Save<T>(T obj, string filename)
}
catch (Exception ex)
{
_console.WriteLine($"Error while loading {filename}: {ex}");
_console.WriteLine($"Error while saving {path}: {ex}");
}
}

Expand Down
2 changes: 1 addition & 1 deletion OWML.SampleMods/OWML.EnableDebugMode/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"name": "EnableDebugMode",
"uniqueName": "Alek.EnableDebugMode",
"version": "0.2",
"owmlVersion": "0.3.42"
"owmlVersion": "0.3.44"
}
2 changes: 1 addition & 1 deletion OWML.SampleMods/OWML.LoadCustomAssets/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"name": "LoadCustomAssets",
"uniqueName": "Alek.LoadCustomAssets",
"version": "0.5",
"owmlVersion": "0.3.42"
"owmlVersion": "0.3.44"
}

0 comments on commit d6510ca

Please sign in to comment.