From 5ae74883d29ccb22704700aac4e5ad5b608dddd3 Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Sat, 5 Sep 2015 16:49:15 +0200 Subject: [PATCH] Hull shields should no longer prevent the departure shuttle from leaving. If hull shields are left alone by the crew (due to being, for example, all dead) the departure shuttle is unable to leave. This should destroy any shields faster than they can regenerate, thus ensuring a safe and pleasant departure. --- code/game/machinery/doors/airlock.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 000c374598a..0f5eeb48b7b 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -911,6 +911,9 @@ About the new airlock wires panel: health -= crush_damage healthcheck() +/obj/effect/energy_field/airlock_crush(var/crush_damage) + Stress(crush_damage) + /obj/structure/closet/airlock_crush(var/crush_damage) ..() damage(crush_damage)