From fc67964877f2065764152e5a2f2ad96dfd955dca Mon Sep 17 00:00:00 2001
From: jbox1 <40789662+jbox144@users.noreply.github.com>
Date: Sun, 26 Jan 2020 17:36:17 +1100
Subject: [PATCH] Enabling breast fluid type customisation
---
code/modules/client/preferences.dm | 9 +++++++++
1 file changed, 9 insertions(+)
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