diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 906207c0..988ad03b 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -783,6 +783,9 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "Cup Size:[features["breasts_size"]]" 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 += "" dat += "" dat += "" @@ -1978,6 +1981,12 @@ GLOBAL_LIST_EMPTY(preferences_datums) new_shape = input(user, "Breast Shape", "Character Preference") as null|anything in GLOB.breasts_shapes_list if(new_shape) features["breasts_shape"] = new_shape + + if("breasts_fluid") + var/new_shape + new_shape = input(user, "Breast Fluid", "Character Preference") as null|anything in GLOB.genital_fluids_list + if(new_shape) + features["breasts_fluid"] = new_shape if("breasts_color") var/new_breasts_color = input(user, "Breast Color:", "Character Preference") as color|null