mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
Fixes datediff not returning (#38215)
This commit is contained in:
@@ -520,7 +520,7 @@ GLOBAL_LIST_EMPTY(external_rsc_urls)
|
|||||||
if(!account_join_date)
|
if(!account_join_date)
|
||||||
account_age = -1
|
account_age = -1
|
||||||
else
|
else
|
||||||
var/datum/DBQuery/query_datediff = SSdbcore.NewQuery("SELECT DATEDIFF(Now(),[account_join_date])")
|
var/datum/DBQuery/query_datediff = SSdbcore.NewQuery("SELECT DATEDIFF(Now(),'[account_join_date]')")
|
||||||
if(!query_datediff.Execute())
|
if(!query_datediff.Execute())
|
||||||
return
|
return
|
||||||
if(query_datediff.NextRow())
|
if(query_datediff.NextRow())
|
||||||
|
|||||||
Reference in New Issue
Block a user