diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm
index 83285599..db412292 100644
--- a/code/modules/client/preferences.dm
+++ b/code/modules/client/preferences.dm
@@ -868,7 +868,20 @@ GLOBAL_LIST_EMPTY(preferences_datums)
dat += "Breast Shape:[features["breasts_shape"]]"
dat += "Lactates:[features["breasts_producing"] == TRUE ? "Yes" : "No"]"
if(features["breasts_producing"] == TRUE)
- dat += "Produces:[features["breasts_fluid"]]"
+ dat += "Produces:"
+ switch(features["breasts_fluid"])
+ if(/datum/reagent/consumable/milk)
+ dat += "Milk"
+ if(/datum/reagent/water)
+ dat += "Water"
+ if(/datum/reagent/consumable/semen)
+ dat += "Semen"
+ if(/datum/reagent/consumable/femcum)
+ dat += "Femcum"
+ else
+ dat += "Nothing?"
+ //This else is a safeguard for errors, and if it happened, they wouldn't be able to change this pref,
+ //DO NOT REMOVE IT UNLESS YOU HAVE A GOOD IDEA
dat += ""
dat += ""