From da5ea18c9a88802be4d9f02571f232049c982511 Mon Sep 17 00:00:00 2001 From: Chiirno Date: Fri, 1 Jan 2021 04:04:39 -0400 Subject: [PATCH] OK, compiling did something funky to the dm code? --- code/modules/reagents/chemistry/machinery/chem_master.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm index 6162da576e..89fdb52b2a 100644 --- a/code/modules/reagents/chemistry/machinery/chem_master.dm +++ b/code/modules/reagents/chemistry/machinery/chem_master.dm @@ -23,7 +23,7 @@ var/fermianalyze //Give more detail on fermireactions on analysis /obj/machinery/chem_master/Initialize() - create_reagents(0) + create_reagents(100) //Calculate the span tags and ids fo all the available pill icons var/datum/asset/spritesheet/simple/assets = get_asset_datum(/datum/asset/spritesheet/simple/pills) @@ -273,7 +273,7 @@ else if (item_type == "bottle") vol_each_max = min(30, vol_each_max) else if (item_type == "condimentPack") - vol_each_max = min(, vol_each_max) + vol_each_max = min(10, vol_each_max) else if (item_type == "condimentBottle") vol_each_max = min(50, vol_each_max) else if (item_type == "hypoVial")