From b1dbb4b7424bafd51cc3d99156ffdb1b457281db Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 12 Apr 2023 05:24:43 +0200 Subject: [PATCH] [MIRROR] admin sound playing now tells the key, not the ckey [MDB IGNORE] (#20500) * admin sound playing now tells the key, not the ckey (#74650) ## About The Pull Request its meant for players, ckey is useless there also mentions playing a sound, not specifically music ## Changelog too minor to mention * admin sound playing now tells the key, not the ckey --------- Co-authored-by: Fikou <23585223+Fikou@users.noreply.github.com> --- code/modules/admin/verbs/playsound.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/playsound.dm b/code/modules/admin/verbs/playsound.dm index 13e4e0978d4..85ed1fe7f45 100644 --- a/code/modules/admin/verbs/playsound.dm +++ b/code/modules/admin/verbs/playsound.dm @@ -128,9 +128,9 @@ switch(anon) if("Yes") if(res == "Yes") - to_chat(world, span_boldannounce("[user.ckey] played: [webpage_url]"), confidential = TRUE) + to_chat(world, span_boldannounce("[user.key] played: [webpage_url]"), confidential = TRUE) else - to_chat(world, span_boldannounce("[user.ckey] played some music"), confidential = TRUE) + to_chat(world, span_boldannounce("[user.key] played a sound"), confidential = TRUE) if("No") if(res == "Yes") to_chat(world, span_boldannounce("An admin played: [webpage_url]"), confidential = TRUE)