diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 12998f6d576..2e7b1866c36 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -564,7 +564,7 @@ GLOBAL_LIST_INIT(localhost_addresses, list( if(!establish_db_connection(GLOB.dbcon)) return - var/DBQuery/query = GLOB.dbcon.NewQuery("SELECT datediff(Now(),firstseen) as age, whitelist_status, account_join_date, DATEDIFF(NOW(), account_join_date, ckey_is_external) FROM ss13_player WHERE ckey = :ckey:") + var/DBQuery/query = GLOB.dbcon.NewQuery("SELECT datediff(Now(),firstseen) as age, whitelist_status, account_join_date, DATEDIFF(NOW(), account_join_date), ckey_is_external FROM ss13_player WHERE ckey = :ckey:") if(!query.Execute(list("ckey"=ckey(key)))) return