Browse Source

Code tidy

pull/743/head
Daniel Gibbs 9 years ago
parent
commit
33ed3562ab
  1. 46
      functions/info_config.sh

46
functions/info_config.sh

@ -197,29 +197,29 @@ elif [ "${engine}" == "realvirtuality" ]; then
slots="\e[0;31mUNAVAILABLE\e[0m" slots="\e[0;31mUNAVAILABLE\e[0m"
fi fi
# port # port
if [ "${port}" != "" ]; then if [ "${port}" != "" ]; then
port=${port} port=${port}
fi fi
if [ ! -n "${port}" ]; then if [ ! -n "${port}" ]; then
port="0" port="0"
fi fi
# query port # query port
if [ "${port}" != "" ]; then if [ "${port}" != "" ]; then
queryport=$((port+1)) queryport=$((port+1))
fi fi
if [ ! -n "${queryport}" ]; then if [ ! -n "${queryport}" ]; then
queryport="0" queryport="0"
fi fi
# master port # master port
if [ "${port}" != "" ]; then if [ "${port}" != "" ]; then
masterport=$((port+2)) masterport=$((port+2))
fi fi
if [ ! -n "${masterport}" ]; then if [ ! -n "${masterport}" ]; then
masterport="0" masterport="0"
fi fi
# Serious Sam # Serious Sam
elif [ "${engine}" == "seriousengine35" ]; then elif [ "${engine}" == "seriousengine35" ]; then

Loading…
Cancel
Save