From fe40c71262c9f67bba2c1e5bb77ccac867e742c6 Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 30 Oct 2017 20:49:35 +0100 Subject: [PATCH] Dropped redundant to string. --- 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 90861dd3d87..a0c1e2135af 100644 --- a/code/modules/client/verbs/ooc.dm +++ b/code/modules/client/verbs/ooc.dm @@ -266,7 +266,7 @@ GLOBAL_VAR_INIT(normal_ooc_colour, OOC_COLOR) if(isobserver(C.mob) && see_ghost_names) choices["[C.mob]([C])"] = C else - choices["[C]"] = C + choices[C] = C choices = sortList(choices) var/selection = input("Please, select a player!", "Ignore", null, null) as null|anything in choices if(!selection || !(selection in choices))