From 63867629e4874e04c7c2e4f1a0b4a263a681d469 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Tue, 11 May 2021 01:42:24 -0700 Subject: [PATCH] Port one line that wasn't ported Port one line that wasn't ported in CHOMPStation2#1888 from https://github.com/VOREStation/VOREStation/pull/10247/files I'm scared. --- code/modules/client/preference_setup/general/03_body.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index 9daddce65c..19697b1f23 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -725,6 +725,8 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O reset_limbs() // Safety for species with incompatible manufacturers; easier than trying to do it case by case. pref.body_markings.Cut() // Basically same as above. + pref.sanitize_body_styles() + var/min_age = get_min_age() var/max_age = get_max_age() pref.age = max(min(pref.age, max_age), min_age)