From fd5b7566fd709061b457cadc4260699adb477ada Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 12 May 2017 01:49:56 -0500 Subject: [PATCH] update client_procs.dm --- code/modules/client/client_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index bcc52efefa..c17101e63e 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -482,7 +482,7 @@ GLOBAL_LIST(external_rsc_urls) if(!account_join_date) account_age = -1 else - var/datum/DBQuery/query_datediff = SSdbcore.NewQuery("SELECT DATEDIFF(Now(),accountjoindate)") + var/datum/DBQuery/query_datediff = SSdbcore.NewQuery("SELECT DATEDIFF(Now(),[account_join_date])") if(!query_datediff.Execute()) return if(query_datediff.NextRow())