diff --git a/modular_citadel/code/datums/status_effects/chems.dm b/modular_citadel/code/datums/status_effects/chems.dm
index f6abf22e3c..160959fbc6 100644
--- a/modular_citadel/code/datums/status_effects/chems.dm
+++ b/modular_citadel/code/datums/status_effects/chems.dm
@@ -85,10 +85,10 @@
if((B.cached_size) < 16)
switch(round(B.cached_size))
if(9)
- if (GLOB.breasts_size_list[B.prev_size] != GLOB.breasts_size_list[B.size])
+ if (B.breast_values[B.prev_size] != B.breast_values[B.size])
to_chat(o, "Your expansive chest has become a more managable size, liberating your movements.")
if(10 to INFINITY)
- if (GLOB.breasts_size_list[B.prev_size] != GLOB.breasts_size_list[B.size])
+ if (B.breast_values[B.prev_size] != B.breast_values[B.size])
to_chat(H, "Your indulgent busom is so substantial, it's affecting your movements!")
if(prob(1))
to_chat(owner, "Your back is feeling a little sore.")
diff --git a/modular_citadel/code/modules/arousal/organs/breasts.dm b/modular_citadel/code/modules/arousal/organs/breasts.dm
index d7c518d415..9602c8edad 100644
--- a/modular_citadel/code/modules/arousal/organs/breasts.dm
+++ b/modular_citadel/code/modules/arousal/organs/breasts.dm
@@ -100,12 +100,12 @@
owner.remove_status_effect(/datum/status_effect/chem/breast_enlarger)
statuscheck = FALSE
if(1 to 8) //If modest size
- size = GLOB.breasts_size_list[round(cached_size)]
+ size = breast_values[round(cached_size)]
if(owner.has_status_effect(/datum/status_effect/chem/breast_enlarger))
owner.remove_status_effect(/datum/status_effect/chem/breast_enlarger)
statuscheck = FALSE
if(9 to 15) //If massive
- size = GLOB.breasts_size_list[round(cached_size)]
+ size = breast_values[round(cached_size)]
if(!owner.has_status_effect(/datum/status_effect/chem/breast_enlarger))
owner.apply_status_effect(/datum/status_effect/chem/breast_enlarger)
statuscheck = TRUE
@@ -118,7 +118,7 @@
if(size == 0)//Bloody byond with it's counting from 1
size = "flat"
if(isnum(prev_size))
- prev_size = GLOB.breasts_size_list[prev_size]
+ prev_size = breast_values[prev_size]
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.")
var/mob/living/carbon/human/H = owner