Merge pull request #6709 from Mloc/bs12-server

testing fix for nui resources
This commit is contained in:
Chinsky
2014-10-14 01:14:54 +04:00
+3 -2
View File
@@ -27,8 +27,9 @@
filenames = flist(path)
for(var/filename in filenames)
if(copytext(filename, length(filename)) != "/") // filenames which end in "/" are actually directories, which we want to ignore
asset_files.Add(file(path + filename)) // add this file to asset_files for sending to clients when they connect
if(fexists(path + filename))
asset_files.Add(fcopy_rsc(path + filename)) // add this file to asset_files for sending to clients when they connect
return
/**