From 007c5b02a49c7a5b01e0d898c3988dd6391324e2 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 2 Sep 2021 21:01:12 -0700 Subject: [PATCH 1/2] 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) From 845786a81ab880c1ff3dc6a220582dcc69de0745 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Thu, 2 Sep 2021 21:10:11 -0700 Subject: [PATCH 2/2] Actually, 5000 is the new point --- code/game/machinery/doppler_array.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/doppler_array.dm b/code/game/machinery/doppler_array.dm index 0a4453f046..3ff75495e6 100644 --- a/code/game/machinery/doppler_array.dm +++ b/code/game/machinery/doppler_array.dm @@ -198,7 +198,7 @@ GLOBAL_LIST_EMPTY(doppler_arrays) say("Explosion not large enough for research calculations.") return else - point_gain = (100000 * orig_light) / (orig_light + 4500) + point_gain = (100000 * orig_light) / (orig_light + 5000) /*****The Point Capper*****/ if(point_gain > linked_techweb.largest_bomb_value)