From f27f51065ea44b4b8817b3bd82a74b1fed16b364 Mon Sep 17 00:00:00 2001 From: R1f72r Date: Sun, 4 Nov 2018 11:15:57 -0500 Subject: [PATCH] This should work --- code/modules/admin/topic.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 3df28fdf505..0462076c016 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1540,13 +1540,13 @@ var/helptype = "ADMINHELP" if(is_mhelp) helptype = "MENTORHELP" - var/take_msg = "[helptype]: [key_name(usr.client)] is attending to [key_name(M)]'s question." + var/take_msg = "[helptype]: [key_name_hidden(usr.client)] is attending to [key_name(M)]'s question." for(var/client/X in GLOB.admins) if(check_rights(R_ADMIN, 0, X.mob)) to_chat(X, take_msg) else if(is_mhelp && check_rights(R_MOD|R_MENTOR, 0, X.mob)) to_chat(X, take_msg) - to_chat(M, "Your question is being attended to by [key_name(usr.client, null, 0)]. Thanks for your patience!") + to_chat(M, "Your question is being attended to by [key_name_hidden(usr.client, null, 0)]. Thanks for your patience!") else to_chat(usr, "Unable to locate mob.")