Update living.dm

This commit is contained in:
silicons
2020-11-23 00:28:17 -07:00
committed by GitHub
parent fbdc339653
commit cf3c4d9d89
+2 -2
View File
@@ -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)