From 90fbce8d95d7286b134a40a08d57bb785fbd6d13 Mon Sep 17 00:00:00 2001 From: bgobandit Date: Tue, 27 Aug 2019 19:11:30 -0400 Subject: [PATCH] ignoring OOC players should display the correct name (#46155) About The Pull Request Fixes #46039. Or should at least I haven't tested it. please note I did not write the ignoring code Why It's Good For The Game bug, fix, etc Changelog cl bandit fix: Fixed an erroneous message with ignoring a player's OOC messages. /cl --- code/modules/client/verbs/ooc.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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