From 87492b1a3590db8aae4a5db5683d8ef2a6455c37 Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Thu, 14 May 2020 20:29:30 +0200 Subject: [PATCH] Changes repair value 0.5% per process tick ~ 1sec, so ~200sec to fully heal it without outside interference if on clockie floor. --- code/game/mecha/combat/neovgre.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/mecha/combat/neovgre.dm b/code/game/mecha/combat/neovgre.dm index a660142962..fdcc4df151 100644 --- a/code/game/mecha/combat/neovgre.dm +++ b/code/game/mecha/combat/neovgre.dm @@ -75,7 +75,7 @@ cell.charge += delta adjust_clockwork_power(-delta) if(obj_integrity < max_integrity && istype(loc, /turf/open/floor/clockwork)) - obj_integrity += min(max_integrity - obj_integrity, max_integrity / 100) + obj_integrity += min(max_integrity - obj_integrity, max_integrity / 200) CHECK_TICK /obj/mecha/combat/neovgre/Initialize()