diff --git a/code/modules/antagonists/changeling/powers/shriek.dm b/code/modules/antagonists/changeling/powers/shriek.dm index 60c4dd546e..9265205b03 100644 --- a/code/modules/antagonists/changeling/powers/shriek.dm +++ b/code/modules/antagonists/changeling/powers/shriek.dm @@ -26,6 +26,7 @@ for(var/obj/machinery/light/L in range(4, user)) L.on = 1 L.break_light_tube() + playsound(get_turf(owner.current), 'sound/effects/lingscreech.ogg', 75, TRUE, 5, soundenvwet = 0) return TRUE /obj/effect/proc_holder/changeling/dissonant_shriek @@ -42,4 +43,5 @@ L.on = 1 L.break_light_tube() empulse(get_turf(user), 2, 5, 1) + playsound(get_turf(owner.current), 'sound/effects/lingempscreech.ogg', 75, TRUE, 5, soundenvwet = 0) return TRUE diff --git a/sound/effects/lingempscreech.ogg b/sound/effects/lingempscreech.ogg new file mode 100644 index 0000000000..282d089107 Binary files /dev/null and b/sound/effects/lingempscreech.ogg differ diff --git a/sound/effects/lingscreech.ogg b/sound/effects/lingscreech.ogg new file mode 100644 index 0000000000..9e05aa6b51 Binary files /dev/null and b/sound/effects/lingscreech.ogg differ