From a418631cbf6132c7d334dfddd6511f52a2ffdb7d Mon Sep 17 00:00:00 2001 From: hislittlecuzin Date: Wed, 8 Nov 2023 22:39:46 -0500 Subject: [PATCH] Close-Doors-When-Lockdown-Dropship Closes Doors when you click "lockdown" on dropships before it locks the doors. --- code/game/machinery/doors/airlock.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index b7257ff4e7d3..40b8e5b873dc 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -787,7 +787,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( /obj/structure/machinery/door/airlock/proc/lock(forced = FALSE) if((operating && !forced) || locked) return - + close() playsound(loc, 'sound/machines/hydraulics_1.ogg', 25) locked = TRUE visible_message(SPAN_NOTICE("\The [src] airlock emits a loud thunk, then a click."))