diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-18 17:02:34 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-05-18 17:02:34 -0400 |
commit | def73fceaf2bff12b899d76a862ead6eb0f42199 (patch) | |
tree | 1b0d0186725ed999be29a9ffc03e4ffb66da0fdd /src/crossplatform.targets | |
parent | 1b1f37d082ea9dbea39bc13aade9d5fd8e6c5f7c (diff) | |
download | SMAPI-def73fceaf2bff12b899d76a862ead6eb0f42199.tar.gz SMAPI-def73fceaf2bff12b899d76a862ead6eb0f42199.tar.bz2 SMAPI-def73fceaf2bff12b899d76a862ead6eb0f42199.zip |
improve game install path detection
Diffstat (limited to 'src/crossplatform.targets')
-rw-r--r-- | src/crossplatform.targets | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crossplatform.targets b/src/crossplatform.targets index f28e005e..00b731eb 100644 --- a/src/crossplatform.targets +++ b/src/crossplatform.targets @@ -3,6 +3,7 @@ <!-- Linux paths --> <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/GOG Games/Stardew Valley/game</GamePath> <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/.local/share/Steam/steamapps/common/Stardew Valley</GamePath> + <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/.steam/steam/steamapps/common/Stardew Valley</GamePath> <!-- Mac paths --> <GamePath Condition="!Exists('$(GamePath)')">/Applications/Stardew Valley.app/Contents/MacOS</GamePath> <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/Library/Application Support/Steam/steamapps/common/Stardew Valley/Contents/MacOS</GamePath> |