Second sprite pass

Re-sprited the bellys to look more pleasing.
Expanded the menu options for belly sizes.
Commented out the condition statement that draws Boobs behind the belly.
This commit is contained in:
SomeGuyEatingPie
2022-04-04 20:12:47 +01:00
parent 98af875e51
commit e8cd028501
4 changed files with 12 additions and 9 deletions
+3 -3
View File
@@ -2379,10 +2379,10 @@ GLOBAL_LIST_EMPTY(preferences_datums)
else
to_chat(user,"<span class='danger'>Invalid color. Your color is not bright enough.</span>")
if("belly_size")
var/new_bellysize = input(user, "Belly size :\n(1-3)", "Character Preference") as num|null
if("belly_size") //GS13 Edit here if we add more belly sprites
var/new_bellysize = input(user, "Belly size :\n(1-10) Odd = Rounded, Even = Fat", "Character Preference") as num|null
if(new_bellysize)
features["belly_size"] = clamp(new_bellysize, 1, 3)
features["belly_size"] = clamp(new_bellysize, 1, 10)
if("butt_size")
var/new_buttsize = input(user, "Butt size :\n(0-5)", "Character Preference") as num|null