diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm index c18bab5eaa8..46b868a7b48 100644 --- a/code/modules/reagents/chemistry/machinery/chem_master.dm +++ b/code/modules/reagents/chemistry/machinery/chem_master.dm @@ -350,7 +350,6 @@ P.pixel_y = rand(-7, 7) P.icon_state = "pill[pillsprite]" reagents.trans_to(P, amount_per_pill) - P.amount_per_transfer_from_this = P.reagents.total_volume // Load the pills in the bottle if there's one loaded if(istype(loaded_pill_bottle) && loaded_pill_bottle.can_be_inserted(P, TRUE)) P.forceMove(loaded_pill_bottle) @@ -374,7 +373,6 @@ P.pixel_x = rand(-7, 7) // random position P.pixel_y = rand(-7, 7) reagents.trans_to(P, amount_per_patch) - P.amount_per_transfer_from_this = P.reagents.total_volume if(is_medical_patch) P.instant_application = TRUE P.icon_state = "bandaid_med" diff --git a/code/modules/reagents/reagent_containers/patch.dm b/code/modules/reagents/reagent_containers/patch.dm index 6b2167e056b..7130ff99bd4 100644 --- a/code/modules/reagents/reagent_containers/patch.dm +++ b/code/modules/reagents/reagent_containers/patch.dm @@ -8,6 +8,7 @@ volume = 30 temperature_min = 270 temperature_max = 350 + visible_transfer_rate = FALSE var/instant_application = FALSE var/needs_to_apply_reagents = TRUE diff --git a/code/modules/reagents/reagent_containers/pill.dm b/code/modules/reagents/reagent_containers/pill.dm index f8d257e7309..efa6f033810 100644 --- a/code/modules/reagents/reagent_containers/pill.dm +++ b/code/modules/reagents/reagent_containers/pill.dm @@ -13,6 +13,7 @@ possible_transfer_amounts = null volume = 100 has_lid = FALSE + visible_transfer_rate = FALSE /obj/item/reagent_containers/pill/Initialize(mapload) . = ..()