diff --git a/GainStation13/code/modules/mod/modules/modules_fat.dm b/GainStation13/code/modules/mod/modules/modules_fat.dm index c1b60c02b1..2f8631be11 100644 --- a/GainStation13/code/modules/mod/modules/modules_fat.dm +++ b/GainStation13/code/modules/mod/modules/modules_fat.dm @@ -51,7 +51,7 @@ name = "Hydraulic Assistance Module" id = "mod_hydraulic" materials = list(/datum/material/iron = 1000, /datum/material/glass = 200) - build_path = /datum/design/module/hydraulic_movement + build_path = /obj/item/mod/module/hydraulic_movement desc = "A GATO-designed module that supports plumper bodies and allows easier movement." /obj/item/mod/module/calovoltaic @@ -139,7 +139,7 @@ min_cold_protection_temperature = -1 permeability_coefficient = 1 siemens_coefficient = 1 - slowdown_inactive = 0.5 + slowdown_inactive = 0 slowdown_active = 0 inbuilt_modules = list(/obj/item/mod/module/hydraulic_movement, /obj/item/mod/module/calovoltaic, /obj/item/mod/module/storage) allowed = list(/obj/item/flashlight, /obj/item/tank/internals) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 044e3cd9c7..86d374a70d 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -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)