From 5d0378c8d37b5f148369385ab376647bcd81c26e Mon Sep 17 00:00:00 2001 From: Tin Date: Wed, 4 Nov 2020 15:24:47 +0100 Subject: [PATCH] Allow EXILED Modification to run Auto Updater I'm proposing this change as it will add an Environment Variable used by the EXILED (a Popular SCP:SL Mods Framework) to run its auto updater. Otherwise, the user could run into an issue with his server not starting. I know this is normally not used to support modifications. But as this is only an environment variable I will propose the change anyway. --- steamcmd_servers/scpsl/dedicated/egg-scpsl.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steamcmd_servers/scpsl/dedicated/egg-scpsl.json b/steamcmd_servers/scpsl/dedicated/egg-scpsl.json index fff58d92..2b35ab93 100644 --- a/steamcmd_servers/scpsl/dedicated/egg-scpsl.json +++ b/steamcmd_servers/scpsl/dedicated/egg-scpsl.json @@ -8,7 +8,7 @@ "author": "info@goover.de", "description": "Egg for SCP: Secret Laboratory Dedicated Linux Server", "image": "quay.io\/parkervcp\/pterodactyl-images:debian_mono-5-complete", - "startup": ".\/LocalAdmin {{SERVER_PORT}}", + "startup": "export DOTNET_BUNDLE_EXTRACT_BASE_DIR=.\/dotnet-bundle && .\/LocalAdmin {{SERVER_PORT}}", "config": { "files": "{\r\n \"config_gameplay.txt\": {\r\n \"parser\": \"yaml\",\r\n \"find\": {\r\n \"server_ip\": \"0.0.0.0\",\r\n \"forward_ports\": \"false\"\r\n }\r\n }\r\n}", "startup": "{\r\n \"done\": \"Waiting for players..\",\r\n \"userInteraction\": []\r\n}", @@ -33,4 +33,4 @@ "rules": "required|string|max:20" } ] -} \ No newline at end of file +}