From 66083d6d6a58c2f24d971cfbd8eec86d4802ce53 Mon Sep 17 00:00:00 2001 From: Krausus Date: Tue, 18 Aug 2015 00:00:53 -0400 Subject: [PATCH] Fixes timer assembly countdown rate Now counts down 2 per (2-second) tick instead of 1, with a minimum of 6 instead of 5 (5 being identical to 6 with the new rate). --- code/modules/assembly/timer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/assembly/timer.dm b/code/modules/assembly/timer.dm index f773d23229f..2367f9a5c04 100644 --- a/code/modules/assembly/timer.dm +++ b/code/modules/assembly/timer.dm @@ -53,7 +53,7 @@ process() if(timing && (time > 0)) - time-- + time -= 2 // 2 seconds per process() if(timing && time <= 0) timing = repeat timer_end() @@ -120,7 +120,7 @@ if(href_list["tp"]) var/tp = text2num(href_list["tp"]) set_time += tp - set_time = min(max(round(set_time), 5), 600) + set_time = min(max(round(set_time), 6), 600) if(!timing) time = set_time