From e7adf4df865afb9531e031b3edac69e5c544e4a8 Mon Sep 17 00:00:00 2001 From: Chemlight Date: Mon, 27 Jul 2020 18:53:46 -0700 Subject: [PATCH] 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)