From 19b79b8232e1dd217d8523a3f2b2481bd3fb9262 Mon Sep 17 00:00:00 2001 From: Fermi Date: Wed, 26 Jun 2019 01:29:34 +0100 Subject: [PATCH] The great botany purge of our time. --- .../code/modules/reagents/chemistry/reagents/astrogen.dm | 1 + .../code/modules/reagents/chemistry/reagents/enlargement.dm | 4 ++++ .../modules/reagents/chemistry/reagents/fermi_reagents.dm | 1 + .../code/modules/reagents/chemistry/recipes/fermi.dm | 1 - 4 files changed, 6 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/astrogen.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/astrogen.dm index 9376519954..af84f46608 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/astrogen.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/astrogen.dm @@ -26,6 +26,7 @@ I'd like to point out from my calculations it'll take about 60-80 minutes to die var/antiGenetics = 255 var/sleepytime = 0 InverseChemVal = 0.25 + can_synth = FALSE /datum/reagent/fermi/astral/on_mob_life(mob/living/M) // Gives you the ability to astral project for a moment! M.alpha = 255 diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm index e00fa1f4aa..dcd4169ac8 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm @@ -29,6 +29,7 @@ ImpureChem = "BEsmaller" //If you make an inpure chem, it stalls growth InverseChemVal = 0.35 InverseChem = "BEsmaller" //At really impure vols, it just becomes 100% inverse + can_synth = FALSE /datum/reagent/fermi/breast_enlarger/on_mob_add(mob/living/carbon/M) . = ..() @@ -139,6 +140,7 @@ color = "#E60584" // rgb: 96, 0, 255 taste_description = "a milky ice cream like flavour." metabolization_rate = 0.25 + can_synth = FALSE /datum/reagent/fermi/BEsmaller/on_mob_life(mob/living/carbon/M) var/obj/item/organ/genital/breasts/B = M.getorganslot("breasts") @@ -177,6 +179,7 @@ ImpureChem = "PEsmaller" //If you make an inpure chem, it stalls growth InverseChemVal = 0.35 InverseChem = "PEsmaller" //At really impure vols, it just becomes 100% inverse and shrinks instead. + can_synth = FALSE /datum/reagent/fermi/penis_enlarger/on_mob_add(mob/living/carbon/M) . = ..() @@ -273,6 +276,7 @@ color = "#888888" // This is greyish..? taste_description = "chinese dragon powder" metabolization_rate = 0.5 + can_synth = FALSE /datum/reagent/fermi/PEsmaller/on_mob_life(mob/living/carbon/M) var/mob/living/carbon/human/H = M diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/fermi_reagents.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/fermi_reagents.dm index 1cd642e2db..ecf081168f 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/fermi_reagents.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/fermi_reagents.dm @@ -387,6 +387,7 @@ color = "#ffc224" var/catshift = FALSE var/mob/living/simple_animal/pet/cat/custom_cat/catto = null + can_synth = FALSE /datum/reagent/fermi/secretcatchem/New() name = "Catbalti[pick("a","u","e","y")]m [pick("apex", "prime", "meow")]"//rename diff --git a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm index 3ab3d1391d..ac6fcc4799 100644 --- a/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm +++ b/modular_citadel/code/modules/reagents/chemistry/recipes/fermi.dm @@ -48,7 +48,6 @@ if(pH < 4) //if acidic, make acid spray R.add_reagent("fermiAcid", (volume/3)) if(R.reagent_list) - message_admins("gas") s.set_up(R, (volume/5), my_atom) s.start()