diff --git a/code/modules/admin/verbs/playsound.dm b/code/modules/admin/verbs/playsound.dm
index 0134a44d149..f9bc7d2aadf 100644
--- a/code/modules/admin/verbs/playsound.dm
+++ b/code/modules/admin/verbs/playsound.dm
@@ -111,12 +111,12 @@
music_extra_data["start"] = data["start_time"]
music_extra_data["end"] = data["end_time"]
music_extra_data["link"] = data["webpage_url"]
- music_extra_data["title"] = data["title"]
var/res = tgui_alert(usr, "Show the title of and link to this song to the players?\n[title]",, list("No", "Yes", "Cancel"))
switch(res)
if("Yes")
to_chat(world, "[src] played: [webpage_url]", confidential = TRUE) //SKYRAT EDIT CHANGE - ORIGINAL: to_chat(world, "An admin played: [webpage_url]", confidential = TRUE)
+ music_extra_data["title"] = data["title"]
if("Cancel")
return