Skip to content

Commit

Permalink
Reverts the new revive notification sound (#7100)
Browse files Browse the repository at this point in the history
Reverts #6918

The new sound notification is too loud and too high pitched to the point
where it's painful to listen to.
harry's permission

![image](https://github.com/user-attachments/assets/0644cafb-045f-45cf-9ed0-0fe610ece7f8)

:cl:
sounddel: removed the new revive notification
/:cl:
  • Loading branch information
joookschad committed Sep 4, 2024
1 parent d053689 commit 81882c8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/items/devices/defibrillator.dm
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@

var/mob/dead/observer/G = H.get_ghost()
if(istype(G) && G.client)
playsound_client(G.client, 'sound/effects/revive_notify.ogg')
playsound_client(G.client, 'sound/effects/adminhelp_new.ogg')
to_chat(G, SPAN_BOLDNOTICE(FONT_SIZE_LARGE("Someone is trying to revive your body. Return to it if you want to be resurrected! \
(Verbs -> Ghost -> Re-enter corpse, or <a href='?src=\ref[G];reentercorpse=1'>click here!</a>)")))

Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/human/species/zombie.dm
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
/datum/species/zombie/proc/handle_alert_ghost(mob/living/carbon/human/zombie)
var/mob/dead/observer/ghost = zombie.get_ghost()
if(ghost?.client)
playsound_client(ghost.client, 'sound/effects/revive_notify.ogg')
playsound_client(ghost.client, 'sound/effects/adminhelp_new.ogg')
to_chat(ghost, SPAN_BOLDNOTICE(FONT_SIZE_LARGE("Your body has risen! (Verbs -> Ghost -> Re-enter corpse, or <a href='?src=\ref[ghost];reentercorpse=1'>click here!</a>)")))

/datum/species/zombie/proc/remove_from_revive(mob/living/carbon/human/zombie)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@
var/mob/dead/observer/ghost = dead.get_ghost()
if(ghost?.client)
COOLDOWN_START(src, ghost_notif, 30 SECONDS)
playsound_client(ghost.client, 'sound/effects/revive_notify.ogg')
playsound_client(ghost.client, 'sound/effects/adminhelp_new.ogg')
to_chat(ghost, SPAN_BOLDNOTICE("Your heart is struggling to pump! There is a chance you might get up!(Verbs -> Ghost -> Re-enter corpse, or <a href='?src=\ref[ghost];reentercorpse=1'>click here!</a>)"))
return TRUE

Expand Down
Binary file removed sound/effects/revive_notify.ogg
Binary file not shown.

0 comments on commit 81882c8

Please sign in to comment.