From 3caca4218e7044c3a3fac26353ed3a2a5d8bbcae Mon Sep 17 00:00:00 2001 From: texan-down-under <73374039+etherware-novice@users.noreply.github.com> Date: Fri, 9 Dec 2022 15:00:49 -0600 Subject: [PATCH] Windoors are vulnerable to a jaws of life (#71733) ## About The Pull Request Windoors can be pried by a jaws of life now ## Why It's Good For The Game Windoors are already immune to any kind of deconstruction outside of bashing it, so making it immune to the jaws of life as well seems excessive ## Changelog :cl: balance: jaws of life can pry windoors /:cl: Co-authored-by: Candycaneannihalator --- code/game/machinery/doors/windowdoor.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index 0f0017276db..d31db259d6c 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -355,8 +355,8 @@ return turn(dir,180) & unres_sides return ..() -/obj/machinery/door/window/try_to_crowbar(obj/item/I, mob/user) - if(!hasPower()) +/obj/machinery/door/window/try_to_crowbar(obj/item/I, mob/user, forced = FALSE) + if(!hasPower() || forced) if(density) open(2) else