From f1d59db927caf16b1194ffdb89e7b9b205b7afca Mon Sep 17 00:00:00 2001 From: Chemlight Date: Mon, 27 Jul 2020 13:36:48 -0700 Subject: [PATCH] Sonic Jack Hammer Nerf This change is to modify the sonic jackhammer intereacting with reinforced walls from a previous 5 seconds to a now total of 20 seconds --- code/game/turfs/simulated/wall/reinf_walls.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/simulated/wall/reinf_walls.dm b/code/game/turfs/simulated/wall/reinf_walls.dm index d52a3bcc..ae0284a0 100644 --- a/code/game/turfs/simulated/wall/reinf_walls.dm +++ b/code/game/turfs/simulated/wall/reinf_walls.dm @@ -50,7 +50,7 @@ /turf/closed/wall/r_wall/try_destroy(obj/item/I, mob/user, turf/T) if(istype(I, /obj/item/pickaxe/drill/jackhammer)) to_chat(user, "You begin to smash though [src]...") - if(do_after(user, 50, target = src)) + if(do_after(user, 200, target = src)) if(!istype(src, /turf/closed/wall/r_wall)) return TRUE I.play_tool_sound(src)