From 97717e7c255aadf15be4574fc021497d5ca74d04 Mon Sep 17 00:00:00 2001 From: Matt Atlas Date: Thu, 10 Jul 2025 22:21:50 +0200 Subject: [PATCH] fix external auth (#20974) --- 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 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