From 9cca2729867f4f90e947dab9a2168e625c722ba9 Mon Sep 17 00:00:00 2001 From: Fermi <> Date: Fri, 20 Sep 2019 19:54:21 +0100 Subject: [PATCH] Fixes quant errors, I hope. --- code/modules/reagents/chemistry/holder.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/holder.dm b/code/modules/reagents/chemistry/holder.dm index 367c1a1483..560d882d88 100644 --- a/code/modules/reagents/chemistry/holder.dm +++ b/code/modules/reagents/chemistry/holder.dm @@ -749,7 +749,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