From e9b623f11ca8829e7a342daa2374328b67f3d2e8 Mon Sep 17 00:00:00 2001 From: Kyle Casey Date: Wed, 21 Sep 2016 18:48:59 -0700 Subject: [PATCH] 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"