Hide pill/patch transfer rates

This commit is contained in:
Arthri
2023-12-12 18:11:56 +00:00
parent ad0edcfa1b
commit f27ffe64f0
3 changed files with 2 additions and 2 deletions
@@ -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"
@@ -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
@@ -13,6 +13,7 @@
possible_transfer_amounts = null
volume = 100
has_lid = FALSE
visible_transfer_rate = FALSE
/obj/item/reagent_containers/pill/Initialize(mapload)
. = ..()