diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-01-02 15:49:25 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-01-02 15:49:25 -0500 |
commit | 76e08fc58b75be3dbcd852bfe53dfed40987871d (patch) | |
tree | c2797903b0eb54d65a5d96554c72aa6629146f22 /build | |
parent | 456480ef918fc4d864b425fb7a8779618a91475a (diff) | |
download | SMAPI-76e08fc58b75be3dbcd852bfe53dfed40987871d.tar.gz SMAPI-76e08fc58b75be3dbcd852bfe53dfed40987871d.tar.bz2 SMAPI-76e08fc58b75be3dbcd852bfe53dfed40987871d.zip |
detect flatpak Steam install paths (#739)
Diffstat (limited to 'build')
-rw-r--r-- | build/find-game-folder.targets | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/find-game-folder.targets b/build/find-game-folder.targets index f304d841..a4200662 100644 --- a/build/find-game-folder.targets +++ b/build/find-game-folder.targets @@ -11,6 +11,7 @@ <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/GOG Games/Stardew Valley/game</GamePath> <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/.steam/steam/steamapps/common/Stardew Valley</GamePath> <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/.local/share/Steam/steamapps/common/Stardew Valley</GamePath> + <GamePath Condition="!Exists('$(GamePath)')">$(HOME)/.var/app/com.valvesoftware.Steam/data/Steam/steamapps/common/Stardew Valley</GamePath> <!-- Mac (may be 'Unix' or 'OSX') --> <GamePath Condition="!Exists('$(GamePath)')">/Applications/Stardew Valley.app/Contents/MacOS</GamePath> |