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")