From 08b967c9e080a35c1e68df9432d1e6e69cfaa507 Mon Sep 17 00:00:00 2001 From: GinjaNinja32 Date: Sat, 11 Oct 2014 18:40:09 +0100 Subject: [PATCH] Move NanoUI cache update to client/New() --- code/modules/client/client procs.dm | 1 + code/modules/mob/login.dm | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index e38827b1a0..cbc9fb80a5 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -159,6 +159,7 @@ log_client_to_db() send_resources() + nanomanager.send_resources(src) if(prefs.lastchangelog != changelog_hash) //bolds the changelog button on the interface so we know there are updates. winset(src, "rpane.changelog", "background-color=#eaeaea;font-style=bold") diff --git a/code/modules/mob/login.dm b/code/modules/mob/login.dm index bf5be72fc4..ec285c5e80 100644 --- a/code/modules/mob/login.dm +++ b/code/modules/mob/login.dm @@ -55,5 +55,3 @@ var/mob/living/carbon/human/H = src if(H.species && H.species.abilities) client.verbs |= H.species.abilities - - nanomanager.send_resources(client)