mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
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:
@@ -70,6 +70,11 @@
|
|||||||
if(!visualsOnly && announce)
|
if(!visualsOnly && announce)
|
||||||
announce(H)
|
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()
|
/datum/job/proc/get_access()
|
||||||
if(!config) //Needed for robots.
|
if(!config) //Needed for robots.
|
||||||
return src.minimal_access.Copy()
|
return src.minimal_access.Copy()
|
||||||
|
|||||||
@@ -10,9 +10,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/datum/species/human/qualifies_for_rank(rank, list/features)
|
/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 TRUE //Pure humans are always allowed in all roles.
|
|
||||||
return ..()
|
|
||||||
|
|
||||||
//Curiosity killed the cat's wagging tail.
|
//Curiosity killed the cat's wagging tail.
|
||||||
/datum/species/human/spec_death(gibbed, mob/living/carbon/human/H)
|
/datum/species/human/spec_death(gibbed, mob/living/carbon/human/H)
|
||||||
|
|||||||
Reference in New Issue
Block a user