Fixed a little peeve with random bodies.

This commit is contained in:
Ghommie
2020-04-14 02:20:19 +02:00
parent 3aad79f6e1
commit e753c1ad14
4 changed files with 12 additions and 10 deletions
@@ -22,11 +22,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)