diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index 35f4e950..c12b2a35 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -260,7 +260,7 @@
if(locked)
return
locked = TRUE
- playsound(src,boltDown,30,0,3)
+ playsound(src,boltDown,50,0,3)
audible_message("You hear a click from the bottom of the door.", null, 1)
update_icon()
@@ -271,7 +271,7 @@
if(!locked)
return
locked = FALSE
- playsound(src,boltUp,30,0,3)
+ playsound(src,boltUp,50,0,3)
audible_message("You hear a click from the bottom of the door.", null, 1)
update_icon()
@@ -1155,7 +1155,7 @@
if(obj_flags & EMAGGED)
return FALSE
use_power(50)
- playsound(src, doorOpen, 30, 0)
+ playsound(src, doorOpen, 50, 0)
if(src.closeOther != null && istype(src.closeOther, /obj/machinery/door/airlock/) && !src.closeOther.density)
src.closeOther.close()
else
@@ -1202,7 +1202,7 @@
if(obj_flags & EMAGGED)
return
use_power(50)
- playsound(src.loc, doorClose, 30, 0)
+ playsound(src.loc, doorClose, 50, 0)
else
playsound(src.loc, 'sound/machines/airlockforced.ogg', 30, 1)
diff --git a/sound/machines/AirlockClose.ogg b/sound/machines/AirlockClose.ogg
index 969247ec..332c6e04 100644
Binary files a/sound/machines/AirlockClose.ogg and b/sound/machines/AirlockClose.ogg differ
diff --git a/sound/machines/AirlockOpen.ogg b/sound/machines/AirlockOpen.ogg
index bed28786..1a5b737c 100644
Binary files a/sound/machines/AirlockOpen.ogg and b/sound/machines/AirlockOpen.ogg differ
diff --git a/sound/machines/BoltsDown.ogg b/sound/machines/BoltsDown.ogg
index e3a56d8c..2e689510 100644
Binary files a/sound/machines/BoltsDown.ogg and b/sound/machines/BoltsDown.ogg differ
diff --git a/sound/machines/BoltsUp.ogg b/sound/machines/BoltsUp.ogg
index 0a3c2851..8d39b7ae 100644
Binary files a/sound/machines/BoltsUp.ogg and b/sound/machines/BoltsUp.ogg differ
diff --git a/sound/machines/airlock.ogg b/sound/machines/airlock.ogg
index bed28786..1a5b737c 100644
Binary files a/sound/machines/airlock.ogg and b/sound/machines/airlock.ogg differ
diff --git a/sound/machines/bigairlockopen.ogg b/sound/machines/bigairlockopen.ogg
index 3fe1bd4d..1a5b737c 100644
Binary files a/sound/machines/bigairlockopen.ogg and b/sound/machines/bigairlockopen.ogg differ