Browse Source

Added randommap

pull/1601/head
Daniel Gibbs 8 years ago
parent
commit
975548ddfe
  1. 4
      lgsm/config-default/config-lgsm/squadserver/_default.cfg
  2. 4
      lgsm/functions/command_details.sh

4
lgsm/config-default/config-lgsm/squadserver/_default.cfg

@ -13,12 +13,12 @@
## Server Start Settings | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters
port="7787"
queryport="27165"
randommapmode="ALWAYS"
randommap="ALWAYS"
ip="0.0.0.0"
## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
fn_parms(){
parms="MULTIHOME=${ip} Port=${port} QueryPort=${queryport}"
parms="MULTIHOME=${ip} RANDOM=${randommap} Port=${port} QueryPort=${queryport}"
}
#### LinuxGSM Settings ####

4
lgsm/functions/command_details.sh

@ -209,8 +209,8 @@ fn_details_gameserver(){
fi
# Random map rotation mode (Squad)
if [ -n "${randommapmode}" ]; then
echo -e "${blue}Map rotation:\t${default}${randommapmode}"
if [ -n "${randommap}" ]; then
echo -e "${blue}Map rotation:\t${default}${randommap}"
fi
# Online status

Loading…
Cancel
Save