diff --git a/code/modules/client/verbs/ooc.dm b/code/modules/client/verbs/ooc.dm index d3139e988e5..edc27c50baa 100644 --- a/code/modules/client/verbs/ooc.dm +++ b/code/modules/client/verbs/ooc.dm @@ -250,9 +250,9 @@ GLOBAL_VAR_INIT(normal_ooc_colour, "#002eb8") // Check if both we and the player are ghosts and they're not using a fakekey if(isobserver(mob) && isobserver(C.mob) && !C.holder?.fakekey) - // Show us the player's mob name in the list in front of their displayed key + // Show us if the player is a ghost or not after their displayed key // Add the player's displayed key to the list - players["[C.mob]([displayed_key])"] = displayed_key + players["[displayed_key](ghost)"] = displayed_key // Add the player's displayed key to the list if we or the player aren't a ghost or they're using a fakekey else