Oh yea, also a fix.

This commit is contained in:
Ghommie
2020-03-21 02:37:05 +01:00
parent 26e2ec92ca
commit 2103e9975b
2 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -100,16 +100,16 @@
..()
if(istype(H))
color = H.hair_color
H.dna.species.mutant_bodyparts["ears"] = "Cat"
H.dna.features["ears"] = "Cat"
H.dna.species.mutant_bodyparts["mam_ears"] = "Cat"
H.dna.features["mam_ears"] = "Cat"
H.update_body()
/obj/item/organ/ears/cat/Remove(special = FALSE)
if(!QDELETED(owner) && ishuman(owner))
var/mob/living/carbon/human/H = owner
color = H.hair_color
H.dna.features["ears"] = "None"
H.dna.species.mutant_bodyparts -= "ears"
H.dna.features["mam_ears"] = "None"
H.dna.species.mutant_bodyparts -= "mam_ears"
H.update_body()
return ..()
+5 -5
View File
@@ -21,16 +21,16 @@
/obj/item/organ/tail/cat/Insert(mob/living/carbon/human/H, special = 0, drop_if_replaced = TRUE)
..()
if(istype(H))
if(!H.dna.species.mutant_bodyparts["tail_human"])
H.dna.species.mutant_bodyparts["tail_human"] = tail_type
H.dna.features["tail_human"] = tail_type
if(!H.dna.species.mutant_bodyparts["mam_tail"])
H.dna.species.mutant_bodyparts["mam_tail"] = tail_type
H.dna.features["mam_tail"] = tail_type
H.update_body()
/obj/item/organ/tail/cat/Remove(special = FALSE)
if(!QDELETED(owner) && ishuman(owner))
var/mob/living/carbon/human/H = owner
H.dna.features["tail_human"] = "None"
H.dna.species.mutant_bodyparts -= "tail_human"
H.dna.features["mam_tail"] = "None"
H.dna.species.mutant_bodyparts -= "mam_tail"
color = H.hair_color
H.update_body()
return ..()