Skip to content

Commit

Permalink
le fix to my original PR, how original
Browse files Browse the repository at this point in the history
  • Loading branch information
Gboster-0 committed Sep 28, 2023
1 parent 58cbb12 commit b162ea0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions monkestation/code/modules/cassettes/machines/dj_station.dm
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ GLOBAL_VAR(dj_booth)

/obj/machinery/cassette/dj_station/examine(mob/user)
. = ..()
if(time_left > 0)
. += span_notice("It seems to be cooling down, you estimate it will take about [time_left] seconds.")
if(time_left > 0 || next_song_timer)
. += span_notice("It seems to be cooling down, you estimate it will take about [((time_left + next_song_timer) / 600)] minutes.")

/obj/machinery/cassette/dj_station/process(seconds_per_tick)
if(waiting_for_yield)
Expand All @@ -71,7 +71,7 @@ GLOBAL_VAR(dj_booth)
return
if((!COOLDOWN_FINISHED(src, next_song_timer)) && !broadcasting)
to_chat(user, span_notice("The [src] feels hot to the touch and needs time to cooldown."))
to_chat(user, span_info("You estimate it will take about [time_left] seconds to cool down."))
to_chat(user, span_info("You estimate it will take about [((time_left + next_song_timer) / 600)] minutes to cool down."))
return
start_broadcast()

Expand Down

0 comments on commit b162ea0

Please sign in to comment.