Skip to content

Commit

Permalink
fix(unt): resolve start parameter issues #2681 (#3733)
Browse files Browse the repository at this point in the history
* Update linuxgsm.sh

* Update _default.cfg

* Update install_config.sh

* Update _default.cfg

* Revert "Update linuxgsm.sh"

This reverts commit 12639d2.

* Revert "Update install_config.sh"

This reverts commit 2de6088.
  • Loading branch information
sharaga44 authored Jan 9, 2022
1 parent 079fe07 commit 1a022ca
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lgsm/config-default/config-lgsm/untserver/_default.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@
ip="0.0.0.0"
port="27015"
maxplayers="20"
defaultmap="pei"
defaultmap="PEI"

## Game Server Login Token (GSLT): Required
# GSLT is required for running a public server.
# More info: https://docs.linuxgsm.com/steamcmd/gslt
gslt=""

## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters
startparameters="-port:${port} -players:${maxplayers} --nographics -${defaultmap} -batchmode +secureserver/${selfname}"
startparameters="-nographics -batchmode -bind ${ip} -port ${port} -maxplayers ${maxplayers} -map ${defaultmap} -gslt ${gslt} +InternetServer/${selfname}"

#### LinuxGSM Settings ####

Expand Down

0 comments on commit 1a022ca

Please sign in to comment.