From 70cd8397a499cef7be064633e8b51ec080396121 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Tue, 15 Apr 2025 03:41:09 +0300 Subject: [PATCH] Taur belly edit Taurs belly option shows only when tauric body is selected --- code/modules/client/preferences.dm | 33 +++++++++++++++--------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 7e64fe5ec7..00d4f3eeca 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -872,22 +872,23 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" dat += "" // GS13 EDIT TAUR BELLY START - dat += APPEARANCE_CATEGORY_COLUMN - dat += "

Taur Belly

" - dat += "[features["has_taur_belly"] == TRUE ? "Yes" : "No"]" - if(features["has_taur_belly"]) - dat += "Color:
" - if(pref_species.use_skintones && features["genitals_use_skintone"] == TRUE) - dat += "[SKINTONE2HEX(skin_tone)](Skin tone overriding)
" - else - dat += "#[features["taur_belly_color"]] Change
" - dat += "Belly Size: [features["taur_belly_size"]]" - dat += "Max Fat Belly Size: [features["max_taur_belly_size"]]" - dat += "Belly Shape: [features["taur_belly_shape"]]" - dat += "Belly Visibility:[features["taur_belly_visibility"]]" - //dat += "Inflation (climax with and manual belly size change in arousal menu):[features["inflatable_belly"] == 1 ? "Yes" : "No"]" - dat += "" - dat += "" + if(features["taur"] != "None") + dat += APPEARANCE_CATEGORY_COLUMN + dat += "

Taur Belly

" + dat += "[features["has_taur_belly"] == TRUE ? "Yes" : "No"]" + if(features["has_taur_belly"]) + dat += "Color:
" + if(pref_species.use_skintones && features["genitals_use_skintone"] == TRUE) + dat += "[SKINTONE2HEX(skin_tone)](Skin tone overriding)
" + else + dat += "#[features["taur_belly_color"]] Change
" + dat += "Belly Size: [features["taur_belly_size"]]" + dat += "Max Fat Belly Size: [features["max_taur_belly_size"]]" + dat += "Belly Shape: [features["taur_belly_shape"]]" + dat += "Belly Visibility:[features["taur_belly_visibility"]]" + //dat += "Inflation (climax with and manual belly size change in arousal menu):[features["inflatable_belly"] == 1 ? "Yes" : "No"]" + dat += "" + dat += "" //Markings if(MARKINGS_CHAR_TAB)