diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm
index c3514429..63ff0873 100644
--- a/code/__HELPERS/global_lists.dm
+++ b/code/__HELPERS/global_lists.dm
@@ -55,7 +55,7 @@
init_sprite_accessory_subtypes(/datum/sprite_accessory/vagina, GLOB.vagina_shapes_list)
init_sprite_accessory_subtypes(/datum/sprite_accessory/breasts, GLOB.breasts_shapes_list)
GLOB.breasts_size_list = list ("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o") //We need the list to choose from initialized, but it's no longer a sprite_accessory thing.
- GLOB.genital_fluids_list = list ("Milk", "Water", "Semen", "Femcum", "Honey")
+ GLOB.genital_fluids_list = list ("Milk", "Water", "Semen", "Femcum", "Honey", "Strawberry_Milk")
GLOB.gentlemans_organ_names = list("phallus", "willy", "dick", "prick", "member", "tool", "gentleman's organ", "cock", "wang", "knob", "dong", "joystick", "pecker", "johnson", "weenie", "tadger", "schlong", "thirsty ferret", "baloney pony", "schlanger")
for(var/K in GLOB.breasts_shapes_list)
var/datum/sprite_accessory/breasts/value = GLOB.breasts_shapes_list[K]
diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 3106de59..f68020b7 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -930,6 +930,8 @@ GLOBAL_LIST_EMPTY(preferences_datums)
dat += "Femcum"
if(/datum/reagent/consumable/alienhoney)
dat += "Honey"
+ if(/datum/reagent/consumable/pinkmilk)
+ dat += "Strawberry milk"
else
dat += "Nothing?"
//This else is a safeguard for errors, and if it happened, they wouldn't be able to change this pref,
@@ -2372,6 +2374,8 @@ GLOBAL_LIST_EMPTY(preferences_datums)
features["balls_fluid"] = /datum/reagent/consumable/femcum
if("Honey")
features["balls_fluid"] = /datum/reagent/consumable/alienhoney
+ if("Strawberry Milk")
+ features["balls_fluid"] = /datum/reagent/consumable/pinkmilk
if("egg_size")
var/new_size
@@ -2415,6 +2419,8 @@ GLOBAL_LIST_EMPTY(preferences_datums)
features["breasts_fluid"] = /datum/reagent/consumable/femcum
if("Honey")
features["breasts_fluid"] = /datum/reagent/consumable/alienhoney
+ if("Strawberry Milk")
+ features["breasts_fluid"] = /datum/reagent/consumable/pinkmilk
if("breasts_color")
var/new_breasts_color = input(user, "Breast Color:", "Character Preference") as color|null