Should fix the broken species

This commit is contained in:
Heroman
2021-01-24 18:01:53 +10:00
parent b30aa42143
commit ed7323be21
@@ -87,7 +87,11 @@
pref.dirty_synth = 1
var/datum/species/S = character.species
var/SB = pref.custom_base ? pref.custom_base : "Human"
var/SB
if(S.selects_bodytype)
SB = pref.custom_base ? pref.custom_base : "Human"
else
SB = S.name
var/datum/species/new_S = S.produceCopy(SB, pref.pos_traits + pref.neu_traits + pref.neg_traits, character)
//Any additional non-trait settings can be applied here