diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 2872b806f..4b4ce1b76 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -58,6 +58,8 @@ if [ "${function_selfname}" != "command_install.sh" ]; then fix_rust.sh elif [ "${shortname}" == "rw" ]; then fix_rw.sh + elif [ "${shortname}" == "ss3" ]; then + fix_ss3.sh elif [ "${gamename}" == "Multi Theft Auto" ]; then fix_mta.sh fi diff --git a/lgsm/functions/fix_ss3.sh b/lgsm/functions/fix_ss3.sh new file mode 100644 index 000000000..3ebbc3910 --- /dev/null +++ b/lgsm/functions/fix_ss3.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# LinuxGSM fix_ss3.sh function +# Author: Daniel Gibbs +# Website: https://linuxgsm.com +# Description: Resolves various issues with Serious Sam 3. + +local commandname="FIX" +local commandaction="Fix" +local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" + +# Fixes https://steamcommunity.com/app/41070/discussions/0/353916981477716386/ +if [ "$(diff "${steamcmddir}/linux32/steamclient.so" "${serverfiles}/Bin/steamclient.so" >/dev/null)" ]; then + cp -f "${steamcmddir}/linux32/steamclient.so" "${serverfiles}/Bin/steamclient.so" +fi \ No newline at end of file