From 18919246bb1104ca68f6f6a96ef669652697c967 Mon Sep 17 00:00:00 2001 From: Deleted user Date: Sun, 28 Jul 2024 17:07:48 +0500 Subject: [PATCH] s --- code/controllers/subsystem/who.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/controllers/subsystem/who.dm b/code/controllers/subsystem/who.dm index cf2f0e1034e3..9cab72922324 100644 --- a/code/controllers/subsystem/who.dm +++ b/code/controllers/subsystem/who.dm @@ -277,7 +277,9 @@ SUBSYSTEM_DEF(who) admin["content"] = "[entry.key] ([rank])" admin["text"] = "" - if(entry.admin_holder?.fakekey || CLIENT_IS_STEALTHED(entry)) + if(CLIENT_IS_STEALTHED(entry)) + continue + else if(entry.admin_holder?.fakekey) admin["text"] += " (HIDDEN)" else minimum_admins += list(admin.Copy())