From 089bf082ebc9e14424bdf2ce134cd7363a49c317 Mon Sep 17 00:00:00 2001 From: James Smith Date: Tue, 20 Sep 2016 01:24:46 -0400 Subject: [PATCH] Research requirement fixes (#966) The research reliability requirements relied on numbers coming from the old broken code, so at a point it would become impossible to continue using the fixed code. This commit patches the overall requirement to be a few points lower to allow for the changes to work as expected. --- code/modules/research/destructive_analyzer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/research/destructive_analyzer.dm b/code/modules/research/destructive_analyzer.dm index 18987d8cc01..3f8e3edebf6 100644 --- a/code/modules/research/destructive_analyzer.dm +++ b/code/modules/research/destructive_analyzer.dm @@ -32,7 +32,7 @@ Note: Must be placed within 3 tiles of the R&D Console for(var/obj/item/weapon/stock_parts/S in component_parts) T += S.rating decon_mod = T * 0.1 - min_reliability = 93 - T + min_reliability = 90 - T /obj/machinery/r_n_d/destructive_analyzer/meteorhit() qdel(src)