fix client age thingy

This commit is contained in:
Kyle Spier-Swenson
2017-05-04 19:01:39 -07:00
committed by GitHub
parent 07b8693b0e
commit 5fda19cd72
+1 -1
View File
@@ -421,7 +421,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())