From 9d846517d98cd61c73d8c7d9e14d43df47fd1564 Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Tue, 14 Jul 2020 20:14:38 -0400 Subject: [PATCH] Fixes Admin Help Tickets not showing the name of the admin who generated a ban. (#52195) --- code/modules/admin/sql_ban_system.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/sql_ban_system.dm b/code/modules/admin/sql_ban_system.dm index fe592767843..afb86bf22dc 100644 --- a/code/modules/admin/sql_ban_system.dm +++ b/code/modules/admin/sql_ban_system.dm @@ -536,7 +536,7 @@ if(player_ckey) create_message("note", player_ckey, admin_ckey, note_reason, null, null, 0, 0, null, 0, severity) var/client/C = GLOB.directory[player_ckey] - var/datum/admin_help/AH = admin_ticket_log(player_ckey, msg) + var/datum/admin_help/AH = admin_ticket_log(player_ckey, "[kna] [msg]") var/appeal_url = "No ban appeal url set!" appeal_url = CONFIG_GET(string/banappeals) var/is_admin = FALSE