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 ..()