From 0bbc54474a737ea9b4027e3348c6f36182c73518 Mon Sep 17 00:00:00 2001 From: alexkar598 <25136265+alexkar598@users.noreply.github.com> Date: Sat, 7 Dec 2019 12:58:13 -0500 Subject: [PATCH 1/3] Update drink_reagents.dm --- .../chemistry/reagents/drink_reagents.dm | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm index 079aa2472740..87da9008c6ef 100644 --- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm @@ -852,20 +852,3 @@ glass_icon_state = "red_queen" glass_name = "Red Queen" glass_desc = "DRINK ME." - var/current_size = 1 - -/datum/reagent/consumable/red_queen/on_mob_life(mob/living/carbon/H) - if(prob(75)) - return ..() - var/newsize = pick(0.5, 0.75, 1, 1.50, 2) - H.resize = newsize/current_size - current_size = newsize - H.update_transform() - if(prob(40)) - H.emote("sneeze") - ..() - -/datum/reagent/consumable/red_queen/on_mob_end_metabolize(mob/living/M) - M.resize = 1/current_size - M.update_transform() - ..() From 55319db4ef946d5ff16c0c03d221708dee76c205 Mon Sep 17 00:00:00 2001 From: alexkar598 <25136265+alexkar598@users.noreply.github.com> Date: Sat, 7 Dec 2019 12:58:57 -0500 Subject: [PATCH 2/3] Update other_reagents.dm --- code/modules/reagents/chemistry/reagents/other_reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index 11c8d0536907..3bcfb5332f54 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -1597,7 +1597,7 @@ var/current_size = 1 taste_description = "bitterness" // apparently what viagra tastes like -/datum/reagent/growthserum/on_mob_life(mob/living/carbon/H) +/datum/reagent/growthserum/on_mob_metabolize(mob/living/carbon/H) var/newsize = current_size switch(volume) if(0 to 19) @@ -1749,4 +1749,4 @@ description = "A highly specialized extract coming from the Australicus sector, used to create broodmother spiders." color = "#ED2939" taste_description = "upside down" - can_synth = FALSE \ No newline at end of file + can_synth = FALSE From e521ce64f3f438265e23255851b78a0e739def14 Mon Sep 17 00:00:00 2001 From: alexkar598 <25136265+alexkar598@users.noreply.github.com> Date: Sat, 7 Dec 2019 12:59:47 -0500 Subject: [PATCH 3/3] Update food_reagents.dm --- code/modules/reagents/chemistry/reagents/food_reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index a51981580090..b045a724fbef 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -657,7 +657,7 @@ color = "#b5a213" taste_description = "tingling mushroom" -/datum/reagent/consumable/tinlux/reaction_mob(mob/living/M) +/datum/reagent/consumable/tinlux/on_mob_metabolize(mob/living/M) M.set_light(2) /datum/reagent/consumable/tinlux/on_mob_end_metabolize(mob/living/M)