Browse Source

Merge pull request #882 from dgibbs64/development

allows arma3server to find its parameters.
pull/884/head
Daniel Gibbs 9 years ago
committed by GitHub
parent
commit
aa860bb897
  1. 10
      lgsm/functions/info_parms.sh

10
lgsm/functions/info_parms.sh

@ -28,8 +28,14 @@ fn_info_config_idtech3(){
}
fn_info_config_realvirtuality(){
port=$(grep "^serverport=" "${servercfgfullpath}" | tr -cd '[:digit:]')
queryport=$(grep "^steamqueryport=" "${servercfgfullpath}" | tr -cd '[:digit:]')
masterport=$(grep "^steamport=" "${servercfgfullpath}" | tr -cd '[:digit:]')
# Not Set
port=${rconport:-"0"}
port=${port:-"2302"}
queryport=${queryport:-"2303"}
masterport=${masterport:-"2304"}
}
fn_info_config_source(){
@ -168,4 +174,4 @@ elif [ "${engine}" == "terraria" ]; then
# Unreal/Unreal 2 engine
elif [ "${engine}" == "unreal" ]||[ "${engine}" == "unreal2" ]; then
fn_info_config_unreal
fi
fi

Loading…
Cancel
Save