From a3026101e0e03fe42bb9d79c4d713707a4dc51bd Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 17 Jun 2022 09:15:39 +0900 Subject: [PATCH] Fix default Steam path prefix --- dzgui.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index aecb93e..e914d8a 100644 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/bin/bash set -o pipefail -version=2.0.1 +version=2.0.2 aid=221100 game="dayz" workshop="https://steamcommunity.com/sharedfiles/filedetails/?id=" @@ -119,7 +119,7 @@ guess_path(){ echo "# Checking for default DayZ path" path=$(find $HOME -path "*.local/share/Steam/steamapps/common/DayZ" | wc -c) if [[ ! $path -eq 0 ]]; then - steam_path="$HOME/.local/share/Steam/steamapps/common/DayZ" + steam_path="$HOME/.local/share/Steam" else echo "# Searching for alternate DayZ path" path=$(find / -path "*/steamapps/common/DayZ" 2>/dev/null)