Browse Source
fix(sf): Update Satisfactory executable (#4643)
change: remove MultiHome Parameter for sfserver
removed temporary fix with sf 1 release
Co-authored-by: Armin <[email protected]>
hotfix/v24.2.4
Daniel Gibbs
7 months ago
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
2 changed files with
2 additions and
9 deletions
-
lgsm/config-default/config-lgsm/sfserver/_default.cfg
-
lgsm/modules/check_executable.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 |
|
|
|