Merge pull request #26923 from MrStonedOne/patch-358

fix client age thingy
This commit is contained in:
oranges
2017-05-05 14:14:32 +12:00
committed by GitHub
+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())