Skip to content

Commit

Permalink
s
Browse files Browse the repository at this point in the history
  • Loading branch information
Deleted user committed Jul 28, 2024
1 parent 17f76ce commit 1891924
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/controllers/subsystem/who.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 1891924

Please sign in to comment.