From 8e1effc3e4070fc2f9b57a38e20dd36b4180cac4 Mon Sep 17 00:00:00 2001 From: kevinz000 <2003111+kevinz000@users.noreply.github.com> Date: Tue, 10 Sep 2019 10:27:40 -0700 Subject: [PATCH] Partially fixes tiny runaway decimals in reagents. --- code/modules/reagents/chemistry/holder.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/holder.dm b/code/modules/reagents/chemistry/holder.dm index e2e99560..be23f701 100644 --- a/code/modules/reagents/chemistry/holder.dm +++ b/code/modules/reagents/chemistry/holder.dm @@ -1,4 +1,4 @@ - #define CHEMICAL_QUANTISATION_LEVEL 0.001 +#define CHEMICAL_QUANTISATION_LEVEL 0.001 /proc/build_chemical_reagent_list() //Chemical Reagents - Initialises all /datum/reagent into a list indexed by reagent id @@ -1148,4 +1148,4 @@ if(initial(R.can_synth)) random_reagents += R var/picked_reagent = pick(random_reagents) - return picked_reagent \ No newline at end of file + return picked_reagent