diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm index af95ee23..2b92fa1d 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor.dm @@ -15,6 +15,8 @@ resistance_flags = FIRE_PROOF damage_deflection = 70 poddoor = TRUE + var/openSound = 'hyperstation/sound/doors/blastDoorOpen.ogg' + var/closeSound = 'hyperstation/sound/doors/blastDoorClose.ogg' /obj/machinery/door/poddoor/preopen icon_state = "open" @@ -72,10 +74,10 @@ switch(animation) if("opening") flick("opening", src) - playsound(src, 'sound/machines/blastdoor.ogg', 30, 1) + playsound(src, openSound, 25, 0) if("closing") flick("closing", src) - playsound(src, 'sound/machines/blastdoor.ogg', 30, 1) + playsound(src, closeSound, 25, 0) /obj/machinery/door/poddoor/update_icon() if(density) diff --git a/code/game/machinery/doors/shutters.dm b/code/game/machinery/doors/shutters.dm index 362dde11..fa6fe46c 100644 --- a/code/game/machinery/doors/shutters.dm +++ b/code/game/machinery/doors/shutters.dm @@ -8,6 +8,8 @@ armor = list("melee" = 20, "bullet" = 20, "laser" = 20, "energy" = 75, "bomb" = 25, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 70) damage_deflection = 20 max_integrity = 100 + openSound = 'hyperstation/sound/doors/shutter.ogg' + closeSound = 'hyperstation/sound/doors/shutter.ogg' /obj/machinery/door/poddoor/shutters/preopen icon_state = "open" diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index 14d16c2c..6d83c2ea 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -141,7 +141,7 @@ if(!src.operating) //in case of emag operating = TRUE do_animate("opening") - playsound(src.loc, 'sound/machines/windowdoor.ogg', 100, 1) + playsound(src.loc, 'sound/machines/windowdoor.ogg', 100, 0) src.icon_state ="[src.base_state]open" sleep(10) @@ -165,7 +165,7 @@ return 0 operating = TRUE do_animate("closing") - playsound(src.loc, 'sound/machines/windowdoor.ogg', 100, 1) + playsound(src.loc, 'sound/machines/windowdoor.ogg', 100, 0) src.icon_state = src.base_state density = TRUE diff --git a/hyperstation/sound/doors/blastDoorClose.ogg b/hyperstation/sound/doors/blastDoorClose.ogg new file mode 100644 index 00000000..086c6b00 Binary files /dev/null and b/hyperstation/sound/doors/blastDoorClose.ogg differ diff --git a/hyperstation/sound/doors/blastDoorOpen.ogg b/hyperstation/sound/doors/blastDoorOpen.ogg new file mode 100644 index 00000000..2c605172 Binary files /dev/null and b/hyperstation/sound/doors/blastDoorOpen.ogg differ diff --git a/hyperstation/sound/doors/shutter.ogg b/hyperstation/sound/doors/shutter.ogg new file mode 100644 index 00000000..e1248aec Binary files /dev/null and b/hyperstation/sound/doors/shutter.ogg differ diff --git a/sound/machines/AirlockClose.ogg b/sound/machines/AirlockClose.ogg index 198dbfb6..969247ec 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 0aac107d..bed28786 100644 Binary files a/sound/machines/AirlockOpen.ogg and b/sound/machines/AirlockOpen.ogg differ diff --git a/sound/machines/airlock.ogg b/sound/machines/airlock.ogg index bdec0176..bed28786 100644 Binary files a/sound/machines/airlock.ogg and b/sound/machines/airlock.ogg differ diff --git a/sound/machines/blastdoor.ogg b/sound/machines/blastdoor.ogg index 2de1b559..9f2ad674 100644 Binary files a/sound/machines/blastdoor.ogg and b/sound/machines/blastdoor.ogg differ diff --git a/sound/machines/windowdoor.ogg b/sound/machines/windowdoor.ogg index bc753a3d..7bdeafd8 100644 Binary files a/sound/machines/windowdoor.ogg and b/sound/machines/windowdoor.ogg differ