Small fixes

This commit is contained in:
Alphas00
2024-12-22 13:27:51 +01:00
parent 7597de2ab8
commit d4ed2bc4b7
2 changed files with 3 additions and 3 deletions

View File

@@ -2820,7 +2820,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
features["belly_size"] = clamp(round(new_bellysize), 1, 10)
if("max_belly_size")
var/new_bellymax = input(user, "Max belly fat size :\n(0-10, 0 = none)", "Character Preference") as num|null
var/new_bellymax = input(user, "Max belly fat size :\n(0-9)", "Character Preference") as num|null
if(new_bellymax)
features["max_belly_size"] = clamp(round(new_bellymax), 0, 10)