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

Commit

Permalink
Fixed a bug that ignored SteamFinder results
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSGill committed Dec 25, 2017
1 parent 5b7350b commit f6169c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions SubnauticaWatcherInstaller/Installer.cs
Expand Up @@ -25,15 +25,13 @@ internal Installer(MessageCallback log)
this.log = log;
try
{

SubnauticaPath = SteamFinder.FindSteamGamePath(264710, "Subnautica");
}
catch (Exception ex)
{
log("Error: " + ex.Message);
SubnauticaPath = Path.Combine(SteamPath, @"steamapps\common\Subnautica");
}

SubnauticaPath = Path.Combine(SteamPath, @"steamapps\common\Subnautica");
}

private string SteamPath =>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,6 +1,6 @@
image: Visual Studio 2017

version: '0.9'
version: '0.10'

install:
# Node on appveyor is too old
Expand Down
2 changes: 1 addition & 1 deletion version.json
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "0.9",
"version": "0.10",
"assemblyVersion": {
"precision": "build"
},
Expand Down

0 comments on commit f6169c7

Please sign in to comment.