gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
532 B
15 lines
532 B
#!/bin/bash
|
|
# LinuxGSM fix_tu.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://linuxgsm.com
|
|
# Description: Resolves various issues with Tower Unite.
|
|
|
|
if [ "${shortname}" == "tu" ]; then
|
|
# Fixes: [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so.
|
|
if [ ! -f "${executabledir}/steamclient.so" ]; then
|
|
fixname="steamclient.so"
|
|
fn_fix_msg_start
|
|
cp -v "${serverfiles}/linux64/steamclient.so" "${executabledir}/steamclient.so" >> "${lgsmlog}"
|
|
fn_fix_msg_end
|
|
fi
|
|
fi
|
|
|