Skip to content

Commit

Permalink
<
Browse files Browse the repository at this point in the history
  • Loading branch information
xTrainx committed Apr 19, 2024
1 parent b73a176 commit 07722f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/machinery/dance_machine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -758,12 +758,12 @@
for(var/datum/track/S in SSjukeboxes.songs)
available[S.song_name] = S
music_to_burn = available
src.visible_message("span class='warning'> music library has been updated.")
src.visible_message("<span class='warning'> music library has been updated.")

/obj/machinery/gramophone_recorder/proc/diskProcess() //its an old piece of tech and it takes it's time
addtimer(CALLBACK(src, .proc/burnDisk), 40)
inuse = TRUE
src.visible_message("'span class='warning'>your disk is being burned, please stand by.")
src.visible_message("<span class='warning'>your disk is being burned, please stand by.")

/obj/machinery/gramophone_recorder/proc/burnDisk() //basically just burns the gathered info into the loaded disk
if(!R)
Expand All @@ -777,7 +777,7 @@
R.R.song_associated_id = loaded_song_associated_id
R.name = "[R.R.song_name] record disk"
playsound(src, 'sound/machines/ping.ogg', 50, 1)
src.visible_message("span class='warning'> [R] is ready!.")
src.visible_message("<span class='warning'> [R] is ready!.")
inuse = FALSE

/obj/machinery/gramophone_recorder/attack_hand(mob/living/user)
Expand Down

0 comments on commit 07722f2

Please sign in to comment.