From 19c2d9c3e367f5ba9599fd8dbead7c8fcbd3fbb8 Mon Sep 17 00:00:00 2001 From: Luc <89928798+lewcc@users.noreply.github.com> Date: Sat, 29 Jul 2023 10:55:22 -0700 Subject: [PATCH] makes human heartbeats not sound robotic (#21856) --- code/modules/mob/living/carbon/human/human_life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_life.dm b/code/modules/mob/living/carbon/human/human_life.dm index 25702c1e79a..c04a8278623 100644 --- a/code/modules/mob/living/carbon/human/human_life.dm +++ b/code/modules/mob/living/carbon/human/human_life.dm @@ -876,7 +876,7 @@ if(heartbeat >= rate) heartbeat = 0 - SEND_SOUND(src, sound('sound/effects/electheart.ogg', channel = CHANNEL_HEARTBEAT, volume = 50)) + SEND_SOUND(src, sound('sound/effects/singlebeat.ogg', channel = CHANNEL_HEARTBEAT, volume = 50)) else heartbeat++