From ce7a42c5cd2853e7d95c0a3ba0ef26692da3e8b3 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Mon, 15 Apr 2019 14:12:45 -0500 Subject: [PATCH] Custom Species we'll ensure it's set to null upon changing, just in case --- code/modules/client/preferences.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 4d4eb8019c..68fa630f6d 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1458,6 +1458,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/newtype = GLOB.species_list[result] pref_species = new newtype() //let's ensure that no weird shit happens on species swapping. + custom_species = null if(!("body_markings" in pref_species.default_features)) features["body_markings"] = "None" if(!("mam_body_markings" in pref_species.default_features))