From 1079bf842e9f9902f90e2979cf341eb646b3d9f9 Mon Sep 17 00:00:00 2001 From: Fikou <23585223+Fikou@users.noreply.github.com> Date: Fri, 29 Jul 2022 01:04:11 +0200 Subject: [PATCH] you can no longer push puzzle doors (#68732) * puzzle doors (such as the ones in the nukie outpost) have overpowering move resist, preventing stuff like Mauler mechs from pushing it, bypassing the need for a key. --- code/game/objects/items/puzzle_pieces.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/puzzle_pieces.dm b/code/game/objects/items/puzzle_pieces.dm index 19c7bd68f88..5412cb505ac 100644 --- a/code/game/objects/items/puzzle_pieces.dm +++ b/code/game/objects/items/puzzle_pieces.dm @@ -42,6 +42,7 @@ max_integrity = 600 armor = list(MELEE = 100, BULLET = 100, LASER = 100, ENERGY = 100, BOMB = 100, BIO = 100, FIRE = 100, ACID = 100) resistance_flags = INDESTRUCTIBLE | FIRE_PROOF | ACID_PROOF | LAVA_PROOF + move_resist = MOVE_FORCE_OVERPOWERING damage_deflection = 70 /// Make sure that the puzzle has the same puzzle_id as the keycard door! var/puzzle_id = null