This commit is contained in:
deathride58
2017-11-21 14:45:44 -05:00
parent 44a7e6cfea
commit c2b27ebfa4
+12 -7
View File
@@ -22,9 +22,10 @@
/obj/item/organ/tail/cat/Insert(mob/living/carbon/human/H, special = 0, drop_if_replaced = TRUE)
..()
if(istype(H))
H.dna.species.mutant_bodyparts |= "tail_human"
H.dna.features["tail_human"] = tail_type
H.update_body()
if(!("tail_human" in H.dna.species.mutant_bodyparts))
H.dna.species.mutant_bodyparts |= "tail_human"
H.dna.features["tail_human"] = tail_type
H.update_body()
/obj/item/organ/tail/cat/Remove(mob/living/carbon/human/H, special = 0)
..()
@@ -45,10 +46,14 @@
/obj/item/organ/tail/lizard/Insert(mob/living/carbon/human/H, special = 0, drop_if_replaced = TRUE)
..()
if(istype(H))
H.dna.features["tail_lizard"] = tail_type
H.dna.features["spines"] = spines
H.dna.species.mutant_bodyparts |= "tail_lizard"
H.dna.species.mutant_bodyparts |= "spines"
// Checks here are necessary so it wouldn't overwrite the tail of a lizard it spawned in
if(!("tail_lizard" in H.dna.species.mutant_bodyparts))
H.dna.features["tail_lizard"] = tail_type
H.dna.species.mutant_bodyparts |= "tail_lizard"
if(!("spines" in H.dna.species.mutant_bodyparts))
H.dna.features["spines"] = spines
H.dna.species.mutant_bodyparts |= "spines"
H.update_body()
/obj/item/organ/tail/lizard/Remove(mob/living/carbon/human/H, special = 0)