[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

🆑
fix: Music Request Credit shows CKEY instead of character name
/🆑

* [NO GBP] Music Request Credits changed to CKEY

---------

Co-authored-by: SomeRandomOwl <2568378+SomeRandomOwl@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-07-12 07:52:34 -04:00
committed by GitHub
co-authored by SomeRandomOwl
parent 4a4c00429f
commit 76b12b0801
@@ -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."