From b1fc45391aefd791bbfe9a0f5df32937e381d7b8 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Thu, 19 May 2022 07:33:35 -0400 Subject: [PATCH] Makes /multi_tile/impassable pod doors have resistance flags. (#17804) * SEEEEEAAAANNN * Update code/game/machinery/doors/poddoor.dm Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> --- code/game/machinery/doors/poddoor.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm index cf32742b4f9..66b00eacb9c 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor.dm @@ -133,7 +133,8 @@ icon = 'icons/obj/doors/1x2blast_hor.dmi' width = 2 dir = EAST -/obj/machinery/door/poddoor/multi_tile/impassable/two_tile_hor + +/obj/machinery/door/poddoor/multi_tile/impassable desc = "A heavy duty blast door that opens mechanically. Looks even tougher than usual." resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF @@ -141,6 +142,11 @@ to_chat(user, "The electronic systems in this door are far too advanced for your primitive hacking peripherals.") return +/obj/machinery/door/poddoor/multi_tile/impassable/two_tile_hor + icon = 'icons/obj/doors/1x2blast_hor.dmi' + width = 2 + dir = EAST + /obj/machinery/door/poddoor/multi_tile/impassable/four_tile_ver icon = 'icons/obj/doors/1x4blast_vert.dmi' width = 4