From ef819d7bae25eaa6a53b2da3b55599dab64c75a8 Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Thu, 11 Mar 2021 22:07:51 -0700 Subject: [PATCH] comment --- modular_citadel/code/modules/arousal/organs/genitals.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/arousal/organs/genitals.dm b/modular_citadel/code/modules/arousal/organs/genitals.dm index 29caa913..82d295a0 100644 --- a/modular_citadel/code/modules/arousal/organs/genitals.dm +++ b/modular_citadel/code/modules/arousal/organs/genitals.dm @@ -426,14 +426,14 @@ continue var/mutable_appearance/genital_overlay = mutable_appearance(S.icon, layer = -layer) - //genitals bigger than 26 inches / g-cup will appear over clothing, if accepted + //genitals bigger than 11 inches / g-cup will appear over clothing, if accepted //otherwise, appear under clothing if(G.slot == "penis" || G.slot == "testicles") if(G.size < 3) //is actually "less than 11 inches" genital_overlay.layer = -GENITALS_UNDER_LAYER if(G.slot == "breasts") var/obj/item/organ/genital/breasts/B = G - if(B.cached_size < 8) + if(B.cached_size < 8) //anything smaller than a g-cup genital_overlay.layer = -GENITALS_UNDER_LAYER //Get the icon