Browse Source

add stationeers fix

pull/3040/head
Daniel Gibbs 5 years ago
parent
commit
9bb9acf000
  1. 5
      lgsm/functions/core_functions.sh
  2. 2
      lgsm/functions/fix.sh
  3. 10
      lgsm/functions/fix_st.sh

5
lgsm/functions/core_functions.sh

@ -415,6 +415,11 @@ functionfile="${FUNCNAME[0]}"
fn_fetch_function
}
fix_st.sh(){
functionfile="${FUNCNAME[0]}"
fn_fetch_function
}
fix_steamcmd.sh(){
functionfile="${FUNCNAME[0]}"
fn_fetch_function

2
lgsm/functions/fix.sh

@ -76,6 +76,8 @@ if [ "${commandname}" != "INSTALL" ]&&[ -z "${fixbypass}" ]; then
fix_squad.sh
elif [ "${shortname}" == "ss3" ]; then
fix_ss3.sh
elif [ "${shortname}" == "st" ]; then
fix_st.sh
elif [ "${shortname}" == "tf2" ]; then
fix_tf2.sh
elif [ "${shortname}" == "terraria" ]; then

10
lgsm/functions/fix_st.sh

@ -0,0 +1,10 @@
#!/bin/bash
# LinuxGSM fix_rust.sh function
# Author: Daniel Gibbs
# Website: https://linuxgsm.com
# Description: Resolves startup issue with Stationeers.
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Fixes: [Raknet] Server Shutting Down (Shutting Down).
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${serverfiles}:${serverfiles}/rocketstation_DedicatedServer_Data/Plugins/x86_64"
Loading…
Cancel
Save