diff --git a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm index 84b3a6c948..6133a025b1 100644 --- a/code/modules/mob/living/carbon/human/species/station/blank_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/blank_vr.dm @@ -6,9 +6,14 @@ var/lightweight = FALSE //Oof! Nonhelpful bump stumbles. var/trashcan = FALSE //It's always sunny in the wrestling ring. var/eat_minerals = FALSE //HEAVY METAL DIET - var/base_species = null // Unused outside of a few species + var/base_species = null //Used in every UpdateAppearance call. var/selects_bodytype = FALSE // Allows the species to choose from body types intead of being forced to be just one. +/datum/species/New() + if(!base_species) + base_species = name + ..() + /datum/species/custom name = SPECIES_CUSTOM name_plural = "Custom"