From cd5c83f3d6e5391c34db2ab06bbc0ff15d2d4deb Mon Sep 17 00:00:00 2001 From: Alphas00 <154434082+Alphas00@users.noreply.github.com> Date: Tue, 21 Jan 2025 18:29:30 +0100 Subject: [PATCH] Breasts size fix Fixed breast size not increasing beyond huge --- code/modules/arousal/organs/breasts.dm | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/code/modules/arousal/organs/breasts.dm b/code/modules/arousal/organs/breasts.dm index d284030c1c..be46874b07 100644 --- a/code/modules/arousal/organs/breasts.dm +++ b/code/modules/arousal/organs/breasts.dm @@ -83,7 +83,7 @@ cached_size = new_value update() ..() - +//"massive" = 17, "giga" = 25, "impossible" = 30 /obj/item/organ/genital/breasts/update_size()//wah var/rounded_cached = round(cached_size) if(cached_size < 0)//I don't actually know what round() does to negative numbers, so to be safe!!fixed @@ -98,10 +98,16 @@ size = breast_values[rounded_cached] if(9 to 15) //massive size = breast_values[rounded_cached] - if(16 to INFINITY) //rediculous + if(16) //rediculous size = "huge" + if(17 to 24) + size = "massive" + if(25 to 29) + size = "giga" + if(30 to INFINITY) + size = "impossible" - if(rounded_cached < 16 && owner)//Because byond doesn't count from 0, I have to do this. + if(rounded_cached < 30 && owner)//Because byond doesn't count from 0, I have to do this. var/mob/living/carbon/human/H = owner var/r_prev_size = round(prev_size) if (rounded_cached > r_prev_size)