Merge pull request #15071 from Putnam3145/remove-bomb-research-cap

Remove arbitrary bomb research cap + tweak formula a little
This commit is contained in:
silicons
2021-09-13 15:09:28 -07:00
committed by GitHub
+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 + 5000)
/*****The Point Capper*****/
if(point_gain > linked_techweb.largest_bomb_value)