Browse Source

added minecraft ot info_config.sh

pull/1011/head
Daniel Gibbs 9 years ago
parent
commit
7c6a1a8e5d
  1. 13
      lgsm/functions/info_config.sh

13
lgsm/functions/info_config.sh

@ -396,18 +396,21 @@ fn_info_config_sdtd(){
gameworld=${gameworld:-"NOT SET"} gameworld=${gameworld:-"NOT SET"}
fi fi
} }
## Just Cause 2 # Just Cause 2
if [ "${engine}" == "avalanche" ]; then if [ "${engine}" == "avalanche" ]; then
fn_info_config_avalanche fn_info_config_avalanche
## Dont Starve Together # Dont Starve Together
elif [ "${engine}" == "dontstarve" ]; then elif [ "${engine}" == "dontstarve" ]; then
fn_info_config_dontstarve fn_info_config_dontstarve
## Project Zomboid
elif [ "${engine}" == "projectzomboid" ]; then
fn_info_config_projectzomboid
# Quake Love # Quake Love
elif [ "${engine}" == "idtech3" ]; then elif [ "${engine}" == "idtech3" ]; then
fn_info_config_idtech3 fn_info_config_idtech3
# Minecraft
elif [ "${engine}" == "minecraft" ]; then
fn_info_config_minecraft
# Project Zomboid
elif [ "${engine}" == "projectzomboid" ]; then
fn_info_config_projectzomboid
# ARMA 3 # ARMA 3
elif [ "${engine}" == "realvirtuality" ]; then elif [ "${engine}" == "realvirtuality" ]; then
fn_info_config_realvirtuality fn_info_config_realvirtuality

Loading…
Cancel
Save