Browse Source

Added missing if statements

pull/1147/head
Daniel Gibbs 9 years ago
parent
commit
a0b6c9dc03
  1. 2
      lgsm/functions/command_details.sh
  2. 3
      lgsm/functions/info_config.sh

2
lgsm/functions/command_details.sh

@ -292,7 +292,7 @@ fn_details_ports(){
parmslocation="${red}UNKNOWN${default}"
# engines that require editing in the config file
local ports_edit_array=( "avalanche" "dontstarve" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" )
local ports_edit_array=( "avalanche" "dontstarve" "idtech2" "idtech3" "lwjgl2" "projectzomboid" "idtech3_ql" "refractor" "realvirtuality" "seriousengine35" "teeworlds" "terraria" "unreal" "unreal2" "unreal3" "TeamSpeak 3" "Mumble" "7 Days To Die" )
for port_edit in "${ports_edit_array[@]}"
do
if [ "${engine}" == "${port_edit}" ]||[ "${gamename}" == "${port_edit}" ]; then

3
lgsm/functions/info_config.sh

@ -513,6 +513,9 @@ elif [ "${gamename}" == "Battlefield: 1942" ]; then
# Dont Starve Together
elif [ "${engine}" == "dontstarve" ]; then
fn_info_config_dontstarve
# Quake 2
elif [ "${gamename}" == "Quake 2" ]; then
fn_info_config_quake2
# Quake 3
elif [ "${gamename}" == "Quake 3: Arena" ]; then
fn_info_config_quake3

Loading…
Cancel
Save