Skip to content

Commit

Permalink
sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdtalon committed Dec 29, 2023
1 parent 08362f6 commit f0b642d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/paperwork/desk_bell.dm
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
visible_message(SPAN_NOTICE("[user] begins repairing [src]..."), SPAN_NOTICE("You begin repairing [src]..."))
if(do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC))
user.visible_message(SPAN_NOTICE("[user] repairs [src]"), SPAN_NOTICE("You repair [src]."))
playsound(user, 'sound/items/Screwdriver.ogg', 50, vary = TRUE)
playsound(user, 'sound/items/Screwdriver.ogg', 50)
broken_ringer = FALSE
times_rang = 0
return TRUE
Expand All @@ -64,7 +64,7 @@
visible_message(SPAN_NOTICE("[user] begins taking apart [src]..."), SPAN_NOTICE("You begin taking apart [src]..."))
if(do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC))
visible_message(SPAN_NOTICE("[user] takes apart [src]."), SPAN_NOTICE("You take apart [src]."))
playsound(user, 'sound/items/deconstruct.ogg', 50, vary = TRUE)
playsound(user, 'sound/items/deconstruct.ogg', 50)
new /obj/item/stack/sheet/metal(get_turf(src))
qdel(src)
return TRUE
Expand Down

0 comments on commit f0b642d

Please sign in to comment.