From b79daed120a17fc5b5b76dbecc808c899ff2f994 Mon Sep 17 00:00:00 2001 From: Jared-Fogle <35135081+Jared-Fogle@users.noreply.github.com> Date: Sat, 26 Sep 2020 21:38:33 -0700 Subject: [PATCH] Remove tab before names in Who for deadmins (#53930) Previously, names were prefixed with tabs for deadmins. This makes the output look significantly worse. --- code/modules/client/verbs/who.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/verbs/who.dm b/code/modules/client/verbs/who.dm index 7a32f518237..78377a166cb 100644 --- a/code/modules/client/verbs/who.dm +++ b/code/modules/client/verbs/who.dm @@ -42,7 +42,7 @@ Lines += entry else//If they don't have +ADMIN, only show hidden admins for(var/client/C in GLOB.clients) - var/entry = "\t[C.key]" + var/entry = "[C.key]" if(C.holder && C.holder.fakekey) entry += " (as [C.holder.fakekey])" entry += " ([round(C.avgping, 1)]ms)"