diff --git a/code/modules/client/verbs/ooc.dm b/code/modules/client/verbs/ooc.dm index 79647dc3cb1..1a82cf204fc 100644 --- a/code/modules/client/verbs/ooc.dm +++ b/code/modules/client/verbs/ooc.dm @@ -300,7 +300,8 @@ GLOBAL_VAR_INIT(normal_ooc_colour, "#002eb8") var/selection = input("Please, select a player!", "Ignore", null, null) as null|anything in choices if(!selection || !(selection in choices)) return - selection = choices[selection] + displayed_choicename = selection // ckey string + selection = choices[selection] // client if(selection == src) to_chat(src, "You can't ignore yourself.") return