From cf3c4d9d8933aa9a86d70c97700a3626172f742c Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 23 Nov 2020 00:28:17 -0700 Subject: [PATCH] Update living.dm --- code/modules/mob/living/living.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 43ea9a74c2..2accfe7d0d 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -263,9 +263,9 @@ return FALSE /mob/living/carbon/human/has_tail() - if(!dna || !dna.species || !dna.species.mutant_bodyparts) + if(!dna || !dna.features) return ..() - var/list/L = dna.species.mutant_bodyparts // caches list because i refuse to type it out and because performance + var/list/L = dna.features // caches list because i refuse to type it out and because performance return (L["mam_tail"] && (L["mam_tail"] != "None")) || (L["tail_human"] && (L["tail_human"] != "None")) || (L["tail_lizard"] && (L["tail_lizard"] != "None")) /mob/living/start_pulling(atom/movable/AM, state, force = pull_force, supress_message = FALSE)