From 9d664e9d1aac3b586d4f7aa5e77764041b2a0b73 Mon Sep 17 00:00:00 2001 From: Bone White Date: Sun, 3 Aug 2014 19:28:48 +0100 Subject: [PATCH] Longer time taken to drill a pipe through a r_wall Added a message too to the driller that it's going to take a while. --- code/game/turfs/simulated/walls_reinforced.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/turfs/simulated/walls_reinforced.dm b/code/game/turfs/simulated/walls_reinforced.dm index 138faa91b7f..a74299cfb69 100644 --- a/code/game/turfs/simulated/walls_reinforced.dm +++ b/code/game/turfs/simulated/walls_reinforced.dm @@ -320,9 +320,9 @@ playsound(get_turf(src), 'sound/weapons/circsawhit.ogg', 50, 1) user.visible_message( \ "[user] starts drilling a hole in \the [src].", \ - "\blue You start drilling a hole in \the [src].", \ + "\blue You start drilling a hole in \the [src]. This is going to take a while.", \ "You hear ratchet.") - if (do_after(user, 80)) + if (do_after(user, 160)) user.visible_message( \ "[user] drills a hole in \the [src] and pushes \a [P] into the void", \ "\blue You have finished drilling in \the [src] and push the [P] into the void.", \