Skip to content

Commit 019431b

Browse files
committed
add fix_lo.sh
1 parent be6ee5e commit 019431b

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

lgsm/functions/fix.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ if [ "${commandname}" == "INSTALL" ]; then
106106
fix_kf.sh
107107
elif [ "${shortname}" == "kf2" ]; then
108108
fix_kf2.sh
109+
elif [ "${shortname}" == "lo" ]; then
110+
fix_lo.sh
109111
elif [ "${shortname}" == "ro" ]; then
110112
fix_ro.sh
111113
elif [ "${shortname}" == "samp" ]; then

lgsm/functions/fix_lo.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
# LinuxGSM fix_lo.sh function
3+
# Author: Daniel Gibbs
4+
# Website: https://linuxgsm.com
5+
# Description: Resolves startup issue with Last Oasis
6+
7+
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
8+
9+
local APPID_FILE = ${executabledir}/steam_appid.txt
10+
if [! -f "${APPID_FILE}" ]; then
11+
echo "903950" > ${APPID_FILE}
12+
fi

0 commit comments

Comments
 (0)