From c5c11a79378d765891138c4e636357d474477b25 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Tue, 12 May 2020 14:53:06 -0400 Subject: [PATCH] i hope we use PENDAS --- code/controllers/subsystem/research.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/research.dm b/code/controllers/subsystem/research.dm index 2515fd8dc4..3620be35e9 100644 --- a/code/controllers/subsystem/research.dm +++ b/code/controllers/subsystem/research.dm @@ -310,7 +310,7 @@ SUBSYSTEM_DEF(research) //Then we subtract production and maturation, making it so faster growing plants are better for RnD //Then we add in lifespan and potency, //A basic seed can be worth 268 points if its the best it can be. - L[TECHWEB_POINT_TYPE_GENERIC] = 50 + initial(((S.rarity + S.yield) * 2) - S.maturation - S.production + S.lifespan + S.potency) + L[TECHWEB_POINT_TYPE_GENERIC] = 50 + initial(S.rarity * 2 + S.yield * 2 - S.maturation - S.production + S.lifespan + S.potency) techweb_point_items[S] = L return ..()