From 04f92ff45b679b3fa6f7c7ff1ab5f687ecb2e73c Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 11 Aug 2020 07:12:04 +0200 Subject: [PATCH] [MIRROR] Lets aloe cream autorepeat when healing (#283) * Lets aloe cream autorepeat when healing (#52730) * 15 * no suture buff Co-authored-by: bumtickley00 * Lets aloe cream autorepeat when healing Co-authored-by: Tony <19880843+AdmiralPancakes1@users.noreply.github.com> Co-authored-by: bumtickley00 --- code/game/objects/items/stacks/medical.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index ebfd5b8b3a7..4c4300379b2 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -215,7 +215,7 @@ desc = "A suture infused with drugs that speed up wound healing of the treated laceration." heal_brute = 15 stop_bleeding = 0.75 - grind_results = list(/datum/reagent/medicine/polypyr = 2) + grind_results = list(/datum/reagent/medicine/polypyr = 1) /obj/item/stack/medical/suture/heal(mob/living/M, mob/user) . = ..() @@ -357,12 +357,15 @@ name = "aloe cream" desc = "A healing paste you can apply on wounds." + gender = PLURAL + singular_name = "aloe cream" icon_state = "aloe_paste" self_delay = 20 other_delay = 10 novariants = TRUE amount = 20 max_amount = 20 + repeating = TRUE var/heal = 3 grind_results = list(/datum/reagent/consumable/aloejuice = 1)