From 76b12b0801655c0d314c0f0bc0243e3de2ea138e Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 12 Jul 2023 13:52:34 +0200 Subject: [PATCH] [MIRROR] [NO GBP] Music Request Credits changed to CKEY [MDB IGNORE] (#22389) * [NO GBP] Music Request Credits changed to CKEY (#76751) ## About The Pull Request I was requested by one of the game admins over in the TG discord to change the credit from character name to ckey. ## Why It's Good For The Game It's mostly a OOC thing, personally I don't know of a good enough reason to put here other than its a PR someone requested of me. ## Changelog :cl: fix: Music Request Credit shows CKEY instead of character name /:cl: * [NO GBP] Music Request Credits changed to CKEY --------- Co-authored-by: SomeRandomOwl <2568378+SomeRandomOwl@users.noreply.github.com> --- code/modules/admin/verbs/request_internet_sound.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/request_internet_sound.dm b/code/modules/admin/verbs/request_internet_sound.dm index d61d3cc94c4..9ce21ec9257 100644 --- a/code/modules/admin/verbs/request_internet_sound.dm +++ b/code/modules/admin/verbs/request_internet_sound.dm @@ -20,12 +20,12 @@ to_chat(usr, span_danger("Invalid URL. Please use a URL from one of the following sites: [replacetext(CONFIG_GET(string/request_internet_allowed), "\\", "")]"), confidential = TRUE) return - var/credit = tgui_alert(usr, "Credit yourself for requesting this song? (will show up as [usr.name])", "Credit Yourself?", list("No", "Yes", "Cancel")) + var/credit = tgui_alert(usr, "Credit yourself for requesting this song? (will show up as [usr.ckey])", "Credit Yourself?", list("No", "Yes", "Cancel")) if(credit == "Cancel" || isnull(credit)) return else if (credit == "Yes") - credit = "[usr.name] requested this track." + credit = "[usr.ckey] requested this track." else credit = "Someone requested this track."