From 028fc13fa17bda3b5a09c4ccbe303bdc5f95cb63 Mon Sep 17 00:00:00 2001 From: Atlantiscze Date: Sat, 27 Dec 2014 01:38:46 +0100 Subject: [PATCH] Repair time adjustment - 10s delay changed to 3s --- code/game/machinery/doors/blast_door.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/doors/blast_door.dm b/code/game/machinery/doors/blast_door.dm index b77091a28d..c22a1e2bbc 100644 --- a/code/game/machinery/doors/blast_door.dm +++ b/code/game/machinery/doors/blast_door.dm @@ -101,7 +101,7 @@ usr << "You don't have enough sheets to repair this! You need at least [amt] sheets." return usr << "You begin repairing [src]..." - if(do_after(usr, 100)) + if(do_after(usr, 30)) if(P.use(amt)) usr << "You have repaired \The [src]" src.repair()