Merge pull request #5589 from CHOMPStation2/upstream-merge-14355

[MIRROR] few small fixes and improvements for proteans
This commit is contained in:
Nadyr
2023-01-27 10:21:37 -05:00
committed by GitHub
5 changed files with 16 additions and 10 deletions

View File

@@ -244,8 +244,8 @@
var/list/choices
var/datum/species/spec = GLOB.all_species[pref.species]
if (spec.selects_bodytype == SELECTS_BODYTYPE_SHAPESHIFTER && istype(spec, /datum/species/shapeshifter))
var/datum/species/shapeshifter/spec_shifter = spec
choices = spec_shifter.valid_transform_species
var/datum/species/spec_shifter = spec
choices = spec_shifter.get_valid_shapeshifter_forms()
else
choices = GLOB.custom_species_bases
if(pref.species != SPECIES_CUSTOM)