From d21001caac6b3bf29e6eaf7ef09db19a0840f414 Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Tue, 13 Jan 2026 23:04:27 -0500 Subject: [PATCH] Use --disable-sentry by default --- hytale-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hytale-setup.sh b/hytale-setup.sh index 82590a4..b96490c 100644 --- a/hytale-setup.sh +++ b/hytale-setup.sh @@ -29,7 +29,7 @@ HYTALE_SERVER_ZIP_FILENAME="hytale-server.zip" # Default: "" - use downloader readonly LOCAL_HYTALE_SERVER_ZIP="${LOCAL_HYTALE_SERVER_ZIP:-}" # Server cmd to start the Hytale server after setup. Depends on whether systemctl is available. -SERVER_START_CMD="cd '${INSTALL_PATH}/Server' && java -jar HytaleServer.jar --assets Assets.zip &" +SERVER_START_CMD="cd '${INSTALL_PATH}/Server' && java -jar HytaleServer.jar --assets Assets.zip --disable-sentry &" # Server password (I still don't know the command line argument for this, so this is just a placeholder for now) # If you know how to set the server password via command line, please let me know! # readonly SERVER_PASSWORD="${SERVER_PASSWORD:-your_password_here}" @@ -206,7 +206,7 @@ Description=Hytale Server After=network.target [Service] WorkingDirectory=$INSTALL_PATH/Server -ExecStart=/usr/bin/java -jar HytaleServer.jar --assets Assets.zip +ExecStart=/usr/bin/java -jar HytaleServer.jar --assets Assets.zip --disable-sentry Restart=on-failure [Install] WantedBy=multi-user.target