This commit is contained in:
Exxion
2021-06-14 15:05:39 -04:00
committed by GitHub
parent dcd9050ba4
commit 00b30133b6

View File

@@ -303,10 +303,13 @@
* @return nothing * @return nothing
*/ */
/datum/nanomanager/proc/send_resources(client) /datum/nanomanager/proc/send_resources(client/client)
set waitfor = FALSE
for(var/file in asset_files) for(var/file in asset_files)
world.log << file world.log << file
client << browse_rsc(file) // send the file to the client client << browse_rsc(file) // send the file to the client
if(client.byond_version == 514)
sleep(2)
/** /**
* Sends a message to the client-side JS of UIs on the object. * Sends a message to the client-side JS of UIs on the object.