From d0f01bff7125f1b6467237ff5b2e4c5283126fe2 Mon Sep 17 00:00:00 2001 From: Pascal Sthamer <10992664+P4sca1@users.noreply.github.com> Date: Sun, 18 Aug 2024 11:50:18 +0200 Subject: [PATCH] fix(palworld): use release binary, update arguments, allow to configure log format --- palworld/entrypoint.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/palworld/entrypoint.sh b/palworld/entrypoint.sh index e01affd..72b9810 100644 --- a/palworld/entrypoint.sh +++ b/palworld/entrypoint.sh @@ -72,11 +72,7 @@ function init_config() { function start() { init_config - local start_command="./Pal/Binaries/Linux/PalServer-Linux-Test port=${GAME_PORT:-8211} players=${MAX_PLAYERS:-32}" - - if [ "$ENABLE_COMMUNITY_SERVER" == "true" ]; then - start_command="$start_command EpicApp=PalServer" - fi + local start_command="./Pal/Binaries/Linux/PalServer-Linux-Shipping Pal -port ${GAME_PORT:-8211} -players ${MAX_PLAYERS:-32} -logformat ${LOG_FORMAT:-text}" if [ -n "$PUBLIC_IP" ]; then start_command="$start_command -publicip ${PUBLIC_IP}" @@ -87,7 +83,7 @@ function start() { fi if [ "$ENABLE_COMMUNITY_SERVER" == "true" ]; then - start_command="$start_command EpicApp=PalServer" + start_command="$start_command -publiclobby" fi if [ "$ENABLE_MULTI_THREADING" == "true" ]; then