Merge pull request #44999 from YPOQ/simplezombiefix

Fixes simple animal zombies not looking like zombies
This commit is contained in:
Jordie
2019-07-08 23:17:31 +10:00
committed by GitHub
+1 -1
View File
@@ -1534,7 +1534,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
var/datum/species/chosen_species
chosen_species = pref_species.type
if(!(pref_species.id in GLOB.roundstart_races) && !(pref_species.id in (CONFIG_GET(keyed_list/roundstart_no_hard_check))))
if(roundstart_checks && !(pref_species.id in GLOB.roundstart_races) && !(pref_species.id in (CONFIG_GET(keyed_list/roundstart_no_hard_check))))
chosen_species = /datum/species/human
pref_species = new /datum/species/human
save_character()