From 58e88bee4bee72fa7389d533e5caf2e91899cc80 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 15 Dec 2018 11:22:24 +0000 Subject: [PATCH] fix(fast-dl): correct sound directory name #1999 * sounds directory was called sounds --- lgsm/functions/command_fastdl.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/command_fastdl.sh b/lgsm/functions/command_fastdl.sh index 7eed4813e..36e15391c 100644 --- a/lgsm/functions/command_fastdl.sh +++ b/lgsm/functions/command_fastdl.sh @@ -170,7 +170,7 @@ fn_fastdl_preview(){ done # Source engine else - fastdl_directories_array=( "maps" "materials" "models" "particles" "sounds" "resources" ) + fastdl_directories_array=( "maps" "materials" "models" "particles" "sound" "resources" ) for directory in "${fastdl_directories_array[@]}"; do if [ -d "${systemdir}/${directory}" ]; then if [ "${directory}" == "maps" ]; then @@ -181,7 +181,7 @@ fn_fastdl_preview(){ local allowed_extentions_array=( "*.vtx" "*.vvd" "*.mdl" "*.phy" "*.jpg" "*.png" ) elif [ "${directory}" == "particles" ]; then local allowed_extentions_array=( "*.pcf" ) - elif [ "${directory}" == "sounds" ]; then + elif [ "${directory}" == "sound" ]; then local allowed_extentions_array=( "*.wav" "*.mp3" "*.ogg" ) fi for allowed_extention in "${allowed_extentions_array[@]}"; do @@ -320,7 +320,7 @@ fn_fastdl_source(){ local allowed_extentions_array=( "*.vtx" "*.vvd" "*.mdl" "*.phy" "*.jpg" "*.png" ) elif [ "${directory}" == "particles" ]; then local allowed_extentions_array=( "*.pcf" ) - elif [ "${directory}" == "sounds" ]; then + elif [ "${directory}" == "sound" ]; then local allowed_extentions_array=( "*.wav" "*.mp3" "*.ogg" ) fi for allowed_extention in "${allowed_extentions_array[@]}"