diff --git a/code/game/objects/items/devices/defibrillator.dm b/code/game/objects/items/devices/defibrillator.dm index 34d6402c0f56..88e8c10d2b68 100644 --- a/code/game/objects/items/devices/defibrillator.dm +++ b/code/game/objects/items/devices/defibrillator.dm @@ -208,7 +208,7 @@ var/mob/dead/observer/G = target.get_ghost() if(istype(G) && G.client) - playsound_client(G.client, 'sound/effects/adminhelp_new.ogg') + playsound_client(G.client, 'sound/effects/ghost_defibrillation.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 click here!)"))) diff --git a/sound/effects/ghost_defibrillation.ogg b/sound/effects/ghost_defibrillation.ogg new file mode 100644 index 000000000000..a77648cec6b0 Binary files /dev/null and b/sound/effects/ghost_defibrillation.ogg differ