From f1d59db927caf16b1194ffdb89e7b9b205b7afca Mon Sep 17 00:00:00 2001 From: Chemlight Date: Mon, 27 Jul 2020 13:36:48 -0700 Subject: [PATCH 1/2] 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) From e7adf4df865afb9531e031b3edac69e5c544e4a8 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Mon, 27 Jul 2020 18:53:46 -0700 Subject: [PATCH 2/2] Brushed off salt Changed 20 seconds to 15. --- 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 ae0284a0..4fd923dd 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, 200, target = src)) + if(do_after(user, 150, target = src)) if(!istype(src, /turf/closed/wall/r_wall)) return TRUE I.play_tool_sound(src)