diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index 562d5cbe6..49e89fba7 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -326,6 +326,11 @@ functionfile="${FUNCNAME}" fn_fetch_function } +fix_kf2.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + fix_ut2k4.sh(){ functionfile="${FUNCNAME}" fn_fetch_function diff --git a/lgsm/functions/fix.sh b/lgsm/functions/fix.sh index 04c3a6748..5c03a8f32 100644 --- a/lgsm/functions/fix.sh +++ b/lgsm/functions/fix.sh @@ -63,29 +63,17 @@ fi # Fixes that are run on install only. if [ "${function_selfname}" == "command_install.sh" ]; then - if [ "${gamename}" == "Killing Floor" ]; then echo "" echo "Applying ${gamename} Server Fixes" echo "=================================" sleep 1 + if [ "${gamename}" == "Killing Floor" ]; then fix_kf.sh elif [ "${gamename}" == "Red Orchestra: Ostfront 41-45" ]; then - echo "" - echo "Applying ${gamename} Server Fixes" - echo "=================================" - sleep 1 fix_ro.sh elif [ "${gamename}" == "Unreal Tournament 2004" ]; then - echo "" - echo "Applying ${gamename} Server Fixes" - echo "=================================" - sleep 1 fix_ut2k4.sh elif [ "${gamename}" == "Unreal Tournament" ]; then - echo "" - echo "Applying ${gamename} Server Fixes" - echo "=================================" - sleep 1 fix_ut.sh fi fi diff --git a/lgsm/functions/fix_kf2.sh b/lgsm/functions/fix_kf2.sh new file mode 100644 index 000000000..f9eaf2d71 --- /dev/null +++ b/lgsm/functions/fix_kf2.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# LinuxGSM fix_kf3.sh function +# Author: Daniel Gibbs +# Website: https://gameservermanagers.com +# Description: Resolves various issues with Killing Floor 2. + +local commandname="FIX" +local commandaction="Fix" +local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" + +fn_parms(){ +parms="\"${defaultmap}?Game=KFGameContent.KFGameInfo_VersusSurvival\"" +} + +fn_print_information "starting Killing Floor 2 server to generate configs." +sleep 1 +command_start.sh +sleep 10 +command_stop.sh \ No newline at end of file