diff --git a/GainStation13/code/modules/mob/living/belly.dm b/GainStation13/code/modules/mob/living/belly.dm index 07c6fc1a68..796b0407d4 100644 --- a/GainStation13/code/modules/mob/living/belly.dm +++ b/GainStation13/code/modules/mob/living/belly.dm @@ -43,8 +43,8 @@ if(D.species.use_skintones && D.features["genitals_use_skintone"]) color = SKINTONE2HEX(H.skin_tone) else - color = "[D.features["belly_color"]]" - size = "[D.features["belly_size"]]" + color = "#[D.features["belly_color"]]" + size = D.features["belly_size"] toggle_visibility(D.features["belly_visibility"], FALSE) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 3341c28c9b..4d84e31f86 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -832,7 +832,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "Butt Visibility:[features["butt_visibility"]]" dat += "" dat += "" - dat += "" // GS13 EDIT BELLY START dat += APPEARANCE_CATEGORY_COLUMN dat += "

Belly

" @@ -850,6 +849,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) //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) @@ -2737,7 +2737,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) // GS13: Adjust sprite ranges in char setup var/new_bellysize = input(user, "Belly size :\n(1-10)", "Character Preference") as num|null if(new_bellysize) - features["belly_size"] = clamp(new_bellysize, 1, 10) + features["belly_size"] = clamp(round(new_bellysize), 1, 10) if("belly_visibility") var/n_vis = input(user, "Belly Visibility", "Character Preference") as null|anything in CONFIG_GET(str_list/safe_visibility_toggles)