Merge pull request #9767 from VOREStation/Verkister-patch-8

Fixes some species jank
This commit is contained in:
Novacat
2021-02-20 17:54:44 -05:00
committed by Chompstation Bot
parent b354763b37
commit dd612e8480

View File

@@ -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"