Browse Source

fix(fastdl): add missing file extention vmt and vtf (#3349)

pull/3363/head
Christian 4 years ago
committed by GitHub
parent
commit
47d0de16c8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lgsm/functions/command_fastdl.sh

2
lgsm/functions/command_fastdl.sh

@ -178,7 +178,7 @@ fn_fastdl_preview(){
elif [ "${directory}" == "materials" ]; then
local allowed_extentions_array=( "*.vtf" "*.vmt" "*.vbf" "*.png" "*.svg" )
elif [ "${directory}" == "models" ]; then
local allowed_extentions_array=( "*.vtx" "*.vvd" "*.mdl" "*.phy" "*.jpg" "*.png" )
local allowed_extentions_array=( "*.vtx" "*.vvd" "*.mdl" "*.phy" "*.jpg" "*.png" "*.vmt" "*.vtf" )
elif [ "${directory}" == "particles" ]; then
local allowed_extentions_array=( "*.pcf" )
elif [ "${directory}" == "sound" ]; then

Loading…
Cancel
Save