From eca63a2b0204a930ac31100ad254eb50b0c14d2b Mon Sep 17 00:00:00 2001 From: ShadowLarkens Date: Wed, 23 Jun 2021 18:56:53 -0700 Subject: [PATCH] Make chem dispenser only dispense 2 bottles by default --- code/modules/reagents/machinery/chem_master.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/machinery/chem_master.dm b/code/modules/reagents/machinery/chem_master.dm index 3fdca52296a..9147588d70b 100644 --- a/code/modules/reagents/machinery/chem_master.dm +++ b/code/modules/reagents/machinery/chem_master.dm @@ -239,7 +239,7 @@ if("create_bottle_multiple") if(condi || !reagents.total_volume) return - tgui_modal_input(src, id, "Please enter the amount of bottles to make (max [MAX_MULTI_AMOUNT] at a time):", null, arguments, pillamount, 5) + tgui_modal_input(src, id, "Please enter the amount of bottles to make (max [MAX_MULTI_AMOUNT] at a time):", null, arguments, pillamount / 5, 5) if("change_bottle_style") var/list/choices = list() for(var/i = 1 to MAX_BOTTLE_SPRITE)