mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
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
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user