diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm index 82553581125..931e6cbe1e9 100644 --- a/code/game/machinery/doors/firedoor.dm +++ b/code/game/machinery/doors/firedoor.dm @@ -400,7 +400,9 @@ switch(animation) if("opening") flick("door_opening", src) + playsound(src, 'sound/machines/firelockopen.ogg', 37, 1) if("closing") + playsound(src, 'sound/machines/firelockclose.ogg', 37, 1) flick("door_closing", src) return diff --git a/sound/machines/firelockclose.ogg b/sound/machines/firelockclose.ogg new file mode 100644 index 00000000000..7257136297b Binary files /dev/null and b/sound/machines/firelockclose.ogg differ diff --git a/sound/machines/firelockopen.ogg b/sound/machines/firelockopen.ogg new file mode 100644 index 00000000000..e9613aaf843 Binary files /dev/null and b/sound/machines/firelockopen.ogg differ