From 7ece70faac2986dc3f9564371cb5be8156c98d17 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Thu, 14 Jan 2021 07:14:16 -0700 Subject: [PATCH 1/2] Enough of this fuckin CBT and titty straining --- .../reagents/chemistry/reagents/enlargement.dm | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm index ac3ef96505..dd550dec39 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm @@ -81,16 +81,7 @@ H.reagents.remove_reagent(type, 5) B.Insert(H) - //If they have them, increase size. If size is comically big, limit movement and rip clothes. B.modify_size(0.05) - - if (ISINRANGE_EX(B.cached_size, 8.5, 9) && (H.w_uniform || H.wear_suit)) - var/target = H.get_bodypart(BODY_ZONE_CHEST) - if(!message_spam) - to_chat(H, "Your breasts begin to strain against your clothes tightly!") - message_spam = TRUE - H.adjustOxyLoss(5, 0) - H.apply_damage(1, BRUTE, target) return ..() /datum/reagent/fermi/breast_enlarger/overdose_process(mob/living/carbon/M) //Turns you into a female if male and ODing, doesn't touch nonbinary and object genders. @@ -232,14 +223,6 @@ P.Insert(H) P.modify_size(0.1) - var/max_D = CONFIG_GET(number/penis_max_inches_prefs) - if (ISINRANGE_EX(P.length, max_D + 0.5, max_D + 1) && (H.w_uniform || H.wear_suit)) - var/target = H.get_bodypart(BODY_ZONE_CHEST) - if(!message_spam) - to_chat(H, "Your cock begin to strain against your clothes tightly!") - message_spam = TRUE - H.apply_damage(2.5, BRUTE, target) - return ..() /datum/reagent/fermi/penis_enlarger/overdose_process(mob/living/carbon/human/M) //Turns you into a male if female and ODing, doesn't touch nonbinary and object genders. From 27f30e526c2b66a5e240dfe42fbb8d048004d0d2 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Thu, 14 Jan 2021 07:22:25 -0700 Subject: [PATCH 2/2] oh right guess these variables won't be used any more. --- .../code/modules/reagents/chemistry/reagents/enlargement.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm index dd550dec39..2e5f3b8994 100644 --- a/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm +++ b/modular_citadel/code/modules/reagents/chemistry/reagents/enlargement.dm @@ -30,7 +30,6 @@ inverse_chem = /datum/reagent/fermi/BEsmaller //At really impure vols, it just becomes 100% inverse can_synth = FALSE value = REAGENT_VALUE_VERY_RARE - var/message_spam = FALSE /datum/reagent/fermi/breast_enlarger/on_mob_metabolize(mob/living/M) . = ..() @@ -180,7 +179,6 @@ inverse_chem = /datum/reagent/fermi/PEsmaller //At really impure vols, it just becomes 100% inverse and shrinks instead. can_synth = FALSE value = REAGENT_VALUE_VERY_RARE - var/message_spam = FALSE /datum/reagent/fermi/penis_enlarger/on_mob_metabolize(mob/living/M) . = ..()