Adjust sprite ranges in char setup

Belly: 1-12 -> 1-10
Butt: 0-5 -> 1-10

Butt actually has an extra sprite (11) but I think 1-10 for both is better for consistency.
This commit is contained in:
psq95
2023-05-22 22:25:54 +01:00
parent fde238f4d2
commit 653b33c6bf
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -2428,14 +2428,14 @@ GLOBAL_LIST_EMPTY(preferences_datums)
to_chat(user,"<span class='danger'>Invalid color. Your color is not bright enough.</span>")
if("belly_size") //GS13 Edit here if we add more belly sprites
var/new_bellysize = input(user, "Belly size :\n(1-12) Odd = Rounded, Even = Fat", "Character Preference") as num|null
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, 12)
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
var/new_buttsize = input(user, "Butt size :\n(1-10)", "Character Preference") as num|null
if(new_buttsize)
features["butt_size"] = clamp(new_buttsize, 0, 5)
features["butt_size"] = clamp(new_buttsize, 1, 10)
if("vag_shape")
var/new_shape