diff --git a/code/modules/plumbing/plumbers/pill_press.dm b/code/modules/plumbing/plumbers/pill_press.dm index ca0336de3d8..4bd9321d2a8 100644 --- a/code/modules/plumbing/plumbers/pill_press.dm +++ b/code/modules/plumbing/plumbers/pill_press.dm @@ -53,6 +53,7 @@ packaging_types += list(category_item) packaging_type = GLOB.reagent_containers[CAT_PILLS][1] + packaging_category = CAT_PILLS max_volume = initial(packaging_type.volume) current_volume = clamp(current_volume, MIN_VOLUME, max_volume) @@ -77,11 +78,11 @@ var/suffix switch(packaging_category) if(CAT_PILLS) - suffix = "Pill" + suffix = "pill" if(CAT_PATCHES) - suffix = "Patch" + suffix = "patch" else - suffix = "Bottle" + suffix = "bottle" container.name = "[product_name] [suffix]" reagents.trans_to(container, current_volume) if (istype(container, /obj/item/reagent_containers/applicator/pill))