From 48ea5a6777e7bc8fd1a29e2ce73821c9fa3708a4 Mon Sep 17 00:00:00 2001 From: skull132 Date: Sun, 7 Feb 2016 12:42:29 +0200 Subject: [PATCH] QOL: No More Annoying Airlocks --- code/game/machinery/doors/airlock.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 2c60d1f0cfe..e3ea34869ff 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -947,10 +947,10 @@ About the new airlock wires panel: for(var/turf/turf in locs) for(var/atom/movable/AM in turf) if(AM.blocks_airlock()) - if(world.time > next_beep_at) +// if(world.time > next_beep_at) - playsound(src.loc, 'sound/machines/buzz-two.ogg', 50, 0) - next_beep_at = world.time + SecondsToTicks(10) +// playsound(src.loc, 'sound/machines/buzz-two.ogg', 50, 0) +// next_beep_at = world.time + SecondsToTicks(10) close_door_at = world.time + 6 return for(var/turf/turf in locs)