Hydraulic clamps can force doors open again (#85514)

## About The Pull Request

What the title says. This behavior seems to have been removed by
accident in a previous PR, so I just put it back. Fixes #85506
## Why It's Good For The Game

Bugs are bad.
## Changelog
🆑
fix: Hydraulic clamps (the mech tool) can force powered doors open
again.
/🆑
This commit is contained in:
GPeckman
2024-08-14 13:20:40 +02:00
committed by GitHub
parent a4c87e521c
commit 95a6db041d
@@ -55,7 +55,7 @@
if(istype(target, /obj/machinery/door/firedoor) || istype(target, /obj/machinery/door/airlock))
var/obj/machinery/door/target_door = target
playsound(chassis, clampsound, 50, FALSE, -6)
target_door.try_to_crowbar(src, source)
target_door.try_to_crowbar(src, source, TRUE)
return ..()
if(isobj(target))