Browse Source
Merge branch 'hotfix/v24.2.4'
pull/4659/head
v24.2.4
Daniel Gibbs
7 months ago
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
4 changed files with
4 additions and
11 deletions
-
lgsm/config-default/config-lgsm/sfserver/_default.cfg
-
lgsm/modules/check_executable.sh
-
lgsm/modules/core_modules.sh
-
linuxgsm.sh
|
|
@ -16,7 +16,7 @@ port="7777" |
|
|
|
|
|
|
|
## Server Parameters | https://docs.linuxgsm.com/configuration/start-parameters#additional-parameters |
|
|
|
## Game Server Docs | https://satisfactory.fandom.com/wiki/Dedicated_servers |
|
|
|
startparameters="FactoryGame -MultiHome=${ip} -Port=${port} -ServerQueryPort=${queryport} -BeaconPort=${beaconport} -log" |
|
|
|
startparameters="FactoryGame -Port=${port} -ServerQueryPort=${queryport} -BeaconPort=${beaconport} -log" |
|
|
|
|
|
|
|
#### LinuxGSM Settings #### |
|
|
|
|
|
|
@ -159,7 +159,7 @@ glibc="2.17" |
|
|
|
## Game Server Directories |
|
|
|
systemdir="${serverfiles}/FactoryGame" |
|
|
|
executabledir="${serverfiles}/Engine/Binaries/Linux" |
|
|
|
executable="./UnrealServer-Linux-Shipping" |
|
|
|
executable="./FactoryServer-Linux-Shipping" |
|
|
|
servercfgdir="${systemdir}/Saved/Config/LinuxServer" |
|
|
|
servercfg="GameUserSettings.ini" |
|
|
|
servercfgdefault="GameUserSettings.ini" |
|
|
|
|
|
@ -7,13 +7,6 @@ |
|
|
|
|
|
|
|
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
|
|
|
|
# #4241 temporary fix for Satisfactory for upgrade betweern Update 7 & Update 8 - remove this once update 8 is released |
|
|
|
if [ "${shortname}" == "sf" ]; then |
|
|
|
if [ ! -f "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping" ]; then |
|
|
|
ln -s "${serverfiles}/Engine/Binaries/Linux/UnrealServer-Linux-Shipping" "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping" |
|
|
|
fi |
|
|
|
fi |
|
|
|
|
|
|
|
# Check if executable exists |
|
|
|
execname=$(basename "${executable}") |
|
|
|
if [ ! -f "${executabledir}/${execname}" ]; then |
|
|
|
|
|
@ -8,7 +8,7 @@ |
|
|
|
|
|
|
|
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" |
|
|
|
|
|
|
|
modulesversion="v24.2.3" |
|
|
|
modulesversion="v24.2.4" |
|
|
|
|
|
|
|
# Core |
|
|
|
|
|
|
|
|
|
@ -24,7 +24,7 @@ if [ -f ".dev-debug" ]; then |
|
|
|
set -x |
|
|
|
fi |
|
|
|
|
|
|
|
version="v24.2.3" |
|
|
|
version="v24.2.4" |
|
|
|
shortname="core" |
|
|
|
gameservername="core" |
|
|
|
commandname="CORE" |
|
|
|