From a4ac9385ed972b5c7e307074e5c8b4b23656fcd6 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Sun, 13 Dec 2015 21:09:48 -0800 Subject: [PATCH] Emergency patch, fixes asset_cache interfering with verbs --- code/modules/client/client procs.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 5cd501a0b8f..eb514bddba2 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -306,6 +306,7 @@ if (config && config.autoconvert_notes) convert_notes_sql(ckey) + send_resources() if(!void) @@ -316,6 +317,7 @@ if(!winexists(src, "asset_cache_browser")) // The client is using a custom skin, tell them. src << "Unable to access asset cache browser, if you are using a custom skin file, please allow DS to download the updated version, if you are not, then make a bug report. This is not a critical issue but can cause issues with resource downloading, as it is impossible to know when extra resources arrived to you." + ////////////// //DISCONNECT// ////////////// @@ -420,8 +422,9 @@ 'html/search.js', // Used in various non-NanoUI HTML windows for search functionality 'html/panels.css' // Used for styling certain panels, such as in the new player panel ) - - getFilesSlow(src, asset_cache, register_asset = FALSE) + spawn (10) + //Precache the client with all other assets slowly, so as to not block other browse() calls + getFilesSlow(src, asset_cache, register_asset = FALSE) //For debugging purposes /client/proc/list_all_languages()