From 0ae8c72c9a5d9640263807796576ed026254d0a6 Mon Sep 17 00:00:00 2001 From: Fermi Date: Sun, 28 Apr 2019 04:04:57 +0100 Subject: [PATCH] Bees --- modular_citadel/code/datums/status_effects/chems.dm | 2 ++ modular_citadel/code/modules/arousal/organs/breasts.dm | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/modular_citadel/code/datums/status_effects/chems.dm b/modular_citadel/code/datums/status_effects/chems.dm index 94df596aef..14a88602f2 100644 --- a/modular_citadel/code/datums/status_effects/chems.dm +++ b/modular_citadel/code/datums/status_effects/chems.dm @@ -39,6 +39,7 @@ var/list/items = list() /datum/status_effect/chem/BElarger/on_apply(mob/living/carbon/M)//Removes clothes, they're too small to contain you. You belong to space now. + message_admins("BElarge started!") var/mob/living/carbon/human/H = M for(var/obj/item/W in H) if(W == H.w_uniform || W == H.wear_suit) @@ -51,6 +52,7 @@ //owner.dropItemToGround(owner.w_uniform) /datum/status_effect/chem/BElarger/tick(mob/living/carbon/M)//If you try to wear clothes, you fail. Slows you down if you're comically huge + message_admins("BElarge tick!") var/obj/item/organ/genital/breasts/B = M.getorganslot("breasts") var/mob/living/carbon/human/H = M message_admins("M: [M]") diff --git a/modular_citadel/code/modules/arousal/organs/breasts.dm b/modular_citadel/code/modules/arousal/organs/breasts.dm index 08378684aa..9717622c04 100644 --- a/modular_citadel/code/modules/arousal/organs/breasts.dm +++ b/modular_citadel/code/modules/arousal/organs/breasts.dm @@ -56,7 +56,6 @@ desc += " They're very small and flatchested, however." else desc += " You estimate that they're [uppertext(size)]-cups." - else if(producing && aroused_state) desc += " They're leaking [fluid_id]." @@ -96,11 +95,16 @@ size = breast_sizes[round(cached_size)] //if(!H.has_status_effect(/datum/status_effect/chem/BElarger)) H.apply_status_effect(/datum/status_effect/chem/BElarger) + message_admins("Attempting to apply.") if(16 to INFINITY) size = cached_size message_admins("Breast size: [size], [cached_size], [owner]") + if(size == 0)//Bloody byond with it's counting from 1 + size = 17 message_admins("[breast_values[prev_size]] vs [breast_values[size]]") if (!(prev_size == breast_values[size])) + if(prev_size == 0)//rabble rabble + prev_size = 17 if (breast_values[size] > breast_values[prev_size]) to_chat(owner, "Your breasts [pick("swell up to", "flourish into", "expand into", "burst forth into", "grow eagerly into", "amplify into")] a [uppertext(size)]-cup.") prev_size = cached_size