Merge pull request #24592 from KorPhaeron/catgirlbuff

Mutant parts are removed if you roll a head job, as opposed to being barred from these jobs
This commit is contained in:
Jordie
2017-03-08 09:58:55 +11:00
committed by GitHub
2 changed files with 6 additions and 3 deletions

View File

@@ -70,6 +70,11 @@
if(!visualsOnly && announce)
announce(H)
if(config.enforce_human_authority && src in command_positions)
H.dna.features["tail_human"] = "None"
H.dna.features["ears"] = "None"
H.regenerate_icons()
/datum/job/proc/get_access()
if(!config) //Needed for robots.
return src.minimal_access.Copy()

View File

@@ -10,9 +10,7 @@
/datum/species/human/qualifies_for_rank(rank, list/features)
if((!features["tail_human"] || features["tail_human"] == "None") && (!features["ears"] || features["ears"] == "None"))
return TRUE //Pure humans are always allowed in all roles.
return ..()
return TRUE //Pure humans are always allowed in all roles.
//Curiosity killed the cat's wagging tail.
/datum/species/human/spec_death(gibbed, mob/living/carbon/human/H)