From 1c6ff4f9fd8df2c758e7641c961a8718ffee1e49 Mon Sep 17 00:00:00 2001 From: Atermonera Date: Wed, 3 Jul 2019 19:07:38 -0800 Subject: [PATCH] Merge pull request #6263 from Nalarac/patch-6 Nerfs Simple Doors --- code/game/objects/structures/simple_doors.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/simple_doors.dm b/code/game/objects/structures/simple_doors.dm index 4b741ed648a..17619c3158c 100644 --- a/code/game/objects/structures/simple_doors.dm +++ b/code/game/objects/structures/simple_doors.dm @@ -131,7 +131,7 @@ user << "You finished digging." Dismantle() else if(istype(W,/obj/item/weapon)) //not sure, can't not just weapons get passed to this proc? - hardness -= W.force/100 + hardness -= W.force/10 user << "You hit the [name] with your [W.name]!" CheckHardness() else if(istype(W,/obj/item/weapon/weldingtool)) @@ -142,6 +142,10 @@ attack_hand(user) return +/obj/structure/simple_door/bullet_act(var/obj/item/projectile/Proj) + hardness -= Proj.force/10 + CheckHardness() + /obj/structure/simple_door/proc/CheckHardness() if(hardness <= 0) Dismantle(1)