Merge pull request #9318 from Thalpy/clingy-Chems

[Fix] Fixes small residues of chems sitting in holders without breaking slow reactions.
This commit is contained in:
kevinz000
2019-09-26 19:31:58 -07:00
committed by GitHub
+1 -1
View File
@@ -746,7 +746,7 @@
total_volume = 0
for(var/reagent in cached_reagents)
var/datum/reagent/R = reagent
if(R.volume < CHEMICAL_QUANTISATION_LEVEL)
if((R.volume < 0.01) && !fermiIsReacting)
del_reagent(R.id)
else
total_volume += R.volume