From 007c5b02a49c7a5b01e0d898c3988dd6391324e2 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 2 Sep 2021 21:01:12 -0700 Subject: [PATCH] Remove bomb research cap; tweak formula to suit --- code/game/machinery/doppler_array.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/game/machinery/doppler_array.dm b/code/game/machinery/doppler_array.dm index 2066e88f85..0a4453f046 100644 --- a/code/game/machinery/doppler_array.dm +++ b/code/game/machinery/doppler_array.dm @@ -197,10 +197,8 @@ GLOBAL_LIST_EMPTY(doppler_arrays) if(orig_light < 10) say("Explosion not large enough for research calculations.") return - else if(orig_light < 4500) - point_gain = (83300 * orig_light) / (orig_light + 3000) else - point_gain = TECHWEB_BOMB_POINTCAP + point_gain = (100000 * orig_light) / (orig_light + 4500) /*****The Point Capper*****/ if(point_gain > linked_techweb.largest_bomb_value)