Skip to content

Commit

Permalink
meem requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Skies-Of-Blue committed Jun 8, 2024
1 parent 481028d commit c38fa0a
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions code/modules/mob/living/carbon/human/species_types/humans.dm
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,17 @@
mutantears = /obj/item/organ/ears/rabbit/bent
if("Floppy Rabbit")
mutantears = /obj/item/organ/ears/rabbit/floppy
if(C.dna.features["tail_human"] == "Cat")
mutant_organs |= /obj/item/organ/tail/cat
if(C.dna.features["tail_human"] == "Dog")
mutant_organs |= /obj/item/organ/tail/dog
if(C.dna.features["tail_human"] == "Fox")
mutant_organs |= /obj/item/organ/tail/fox
if(C.dna.features["tail_human"] == "Fox 2")
mutant_organs |= /obj/item/organ/tail/fox/alt
if(C.dna.features["tail_human"] == "Rabbit")
mutant_organs |= /obj/item/organ/tail/rabbit
switch(C.dna.features["tail_human"])
if("Cat")
mutant_organs |= /obj/item/organ/tail/cat
if("Dog")
mutant_organs |= /obj/item/organ/tail/dog
if("Fox")
mutant_organs |= /obj/item/organ/tail/fox
if("Fox 2")
mutant_organs |= /obj/item/organ/tail/fox/alt
if("Rabbit")
mutant_organs |= /obj/item/organ/tail/rabbit

return ..()

Expand Down

0 comments on commit c38fa0a

Please sign in to comment.