From c33ca609ca721d51ebe8eeb6f5760e6b67056f08 Mon Sep 17 00:00:00 2001 From: Seris02 Date: Mon, 30 Jan 2023 07:10:31 +0800 Subject: [PATCH] copy list --- code/modules/client/preference_setup/vore/07_traits.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preference_setup/vore/07_traits.dm b/code/modules/client/preference_setup/vore/07_traits.dm index 337888e844..4b611b6604 100644 --- a/code/modules/client/preference_setup/vore/07_traits.dm +++ b/code/modules/client/preference_setup/vore/07_traits.dm @@ -31,9 +31,9 @@ var/list/choices var/datum/species/spec = GLOB.all_species[new_species] if (spec.selects_bodytype == SELECTS_BODYTYPE_SHAPESHIFTER) - choices = spec.get_valid_shapeshifter_forms() + choices = spec.get_valid_shapeshifter_forms().Copy() else if (spec.selects_bodytype == SELECTS_BODYTYPE_CUSTOM) - choices = GLOB.custom_species_bases + choices = GLOB.custom_species_bases.Copy() if(new_species != SPECIES_CUSTOM) choices = (choices | new_species) return choices