From ce352fb46bc06385478dfa20fc5e2e65f51e4ccd Mon Sep 17 00:00:00 2001 From: Timberpoes Date: Mon, 4 Oct 2021 04:15:57 +0100 Subject: [PATCH] Use ckeys instead of keys in key name helper proc and new_player login. (#61857) --- code/modules/admin/admin.dm | 4 ++-- code/modules/mob/dead/new_player/login.dm | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index db3a10da818..646a7da1f19 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -1,13 +1,13 @@ //////////////////////////////// /proc/message_admins(msg) - msg = "ADMIN LOG: [msg]" + msg = "ADMIN LOG: [msg]" to_chat(GLOB.admins, type = MESSAGE_TYPE_ADMINLOG, html = msg, confidential = TRUE) /proc/relay_msg_admins(msg) - msg = "RELAY: [msg]" + msg = "RELAY: [msg]" to_chat(GLOB.admins, type = MESSAGE_TYPE_ADMINLOG, html = msg, diff --git a/code/modules/mob/dead/new_player/login.dm b/code/modules/mob/dead/new_player/login.dm index 0d406c3485f..5ec50107f57 100644 --- a/code/modules/mob/dead/new_player/login.dm +++ b/code/modules/mob/dead/new_player/login.dm @@ -1,6 +1,7 @@ /mob/dead/new_player/Login() if(!client) return + if(CONFIG_GET(flag/use_exp_tracking)) client.set_exp_from_db() client.set_db_player_flags()