Merge pull request #11847 from Ghommie/Ghommie-cit679

A peeve with random bodies.
This commit is contained in:
kevinz000
2020-04-25 16:59:07 -07:00
committed by GitHub
4 changed files with 12 additions and 10 deletions
@@ -23,11 +23,7 @@
if(!pref_species)
var/rando_race = pick(GLOB.roundstart_races)
pref_species = new rando_race()
features = random_features(pref_species?.id)
if(gender == MALE || gender != FEMALE)
features["body_model"] = gender
else if(gender == PLURAL)
features["body_model"] = pick(MALE,FEMALE)
features = random_features(pref_species?.id, gender)
age = rand(AGE_MIN,AGE_MAX)
/datum/preferences/proc/update_preview_icon(equip_job = TRUE)