Crash fix attempt: Moving NanoUI resource file sending away from client/New()

it's going in mob/Login() instead.
This commit is contained in:
Ccomp5950
2014-04-25 17:47:27 -05:00
parent 74ef3765d0
commit e548fe6e43
3 changed files with 4 additions and 4 deletions

View File

@@ -243,9 +243,6 @@
/client/proc/send_resources()
// preload_vox() //Causes long delays with initial start window and subsequent windows when first logged in.
// Send NanoUI resources to this client
nanomanager.send_resources(src)
getFiles(
'html/search.js',
'html/panels.css',

View File

@@ -54,4 +54,6 @@
if(istype(src,/mob/living/carbon/human))
var/mob/living/carbon/human/H = src
if(H.species && H.species.abilities)
client.verbs |= H.species.abilities
client.verbs |= H.species.abilities
nanomanager.send_resources(client)

View File

@@ -29,5 +29,6 @@
new_player_panel()
spawn(40)
if(client)
nanomanager.send_resources(client)
handle_privacy_poll()
client.playtitlemusic()