Remove bomb research cap; tweak formula to suit

This commit is contained in:
Putnam3145
2021-09-02 21:01:12 -07:00
parent 21f3e97cb7
commit 007c5b02a4
+1 -3
View File
@@ -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)