diff --git a/code/game/machinery/doppler_array.dm b/code/game/machinery/doppler_array.dm index 2066e88f85..3ff75495e6 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 + 5000) /*****The Point Capper*****/ if(point_gain > linked_techweb.largest_bomb_value)