diff --git a/modular_ss220/aesthetics_sounds/_aesthetics_sounds.dme b/modular_ss220/aesthetics_sounds/_aesthetics_sounds.dme index 541cef57ef63..a9e05ac9803b 100644 --- a/modular_ss220/aesthetics_sounds/_aesthetics_sounds.dme +++ b/modular_ss220/aesthetics_sounds/_aesthetics_sounds.dme @@ -2,3 +2,4 @@ #include "code/closet.dm" #include "code/items.dm" +#include "code/wilhelm.dm" diff --git a/modular_ss220/aesthetics_sounds/code/wilhelm.dm b/modular_ss220/aesthetics_sounds/code/wilhelm.dm new file mode 100644 index 000000000000..13f5e154a3ad --- /dev/null +++ b/modular_ss220/aesthetics_sounds/code/wilhelm.dm @@ -0,0 +1,4 @@ +/turf/simulated/floor/chasm/straight_down/lava_land_surface/drop(atom/movable/AM) + if(iscarbon(AM)) + playsound(AM.loc, 'modular_ss220/aesthetics_sounds/sound/wilhelm_scream.ogg', 50) + . = ..() diff --git a/modular_ss220/aesthetics_sounds/sound/wilhelm_scream.ogg b/modular_ss220/aesthetics_sounds/sound/wilhelm_scream.ogg new file mode 100644 index 000000000000..9a9d1cece809 Binary files /dev/null and b/modular_ss220/aesthetics_sounds/sound/wilhelm_scream.ogg differ