From fc035153f85f86c2dc05f85fc10aac997f2b0e72 Mon Sep 17 00:00:00 2001 From: GhoulofGSG9 Date: Sun, 18 Sep 2016 10:49:44 +0200 Subject: [PATCH 1/3] Added missing logdir start parameter for Natural Selection 2 so the game is able to save various logs --- NaturalSelection2/ns2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 694dbd958..7806f14e2 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -48,7 +48,7 @@ password="" # http://wiki.unknownworlds.com/ns2/Dedicated_Server fn_parms(){ -parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" +parms="-name \"${servername}\" -port ${port} -webadmin -webdomain ${ip} -webuser ${webadminuser} -webpassword \"${webadminpass}\" -webport ${webadminport} -map ${defaultmap} -limit ${maxplayers} -config_path \"${servercfgdir}\" -logdir \"${gamelogdir}\" -modstorage \"${modstoragedir}\" -mods \"${mods}\"" } #### Advanced Variables #### From 54fd0676cae2ef93a66a55ffcfa3e688c960bc5c Mon Sep 17 00:00:00 2001 From: GhoulofGSG9 Date: Wed, 21 Sep 2016 15:06:32 +0200 Subject: [PATCH 2/3] Increased the script version --- NaturalSelection2/ns2server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 7806f14e2..52e8eb2be 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -9,7 +9,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="220416" +version="210916" #### Variables #### From e9b623f11ca8829e7a342daa2374328b67f3d2e8 Mon Sep 17 00:00:00 2001 From: Kyle Casey Date: Wed, 21 Sep 2016 18:48:59 -0700 Subject: [PATCH 3/3] Fix for Bug #1049 This commit should fix the issue with Bug #1049 not Commiting graph files for maps to the FastDL server by searching for files with the .ain extension. --- lgsm/functions/command_fastdl.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 9f83103b9..f2728ea74 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -160,6 +160,7 @@ fn_gmod_fastdl(){ fn_script_log "Copying map files" sleep 0.5 find . -name '*.bsp' | cpio --quiet -updm "${fastdldir}" + find . -name '*.ain' | cpio --quiet -updm "${fastdldir}" fn_print_ok "Map files copied" sleep 0.5 echo -en "\n"