From 7e6234096cfc9636e019143397ece120144bef3a Mon Sep 17 00:00:00 2001 From: Yawet330 <65188584+Yawet330@users.noreply.github.com> Date: Wed, 9 Aug 2023 21:01:27 +0100 Subject: [PATCH] Update ooc.dm --- code/modules/client/verbs/ooc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/verbs/ooc.dm b/code/modules/client/verbs/ooc.dm index 93f91ad3a0..cc44171ed0 100644 --- a/code/modules/client/verbs/ooc.dm +++ b/code/modules/client/verbs/ooc.dm @@ -234,7 +234,7 @@ GLOBAL_VAR_INIT(normal_ooc_colour, "#002eb8") var/list/choices = list() for(var/client/C in GLOB.clients) if(isobserver(C.mob) && see_ghost_names) - choices["[C.mob]([C])"] = C + choices["[C.mob]"] = C //NONMODULARITY NOTE: Removes the ability to link CKEYs to Characters. Always reapply for privacy reasons. else choices[C] = C choices = sortList(choices)