Removes unnecessary check.

The hidetail flag will hide the tail when needed, doesn't matter if it's
a spacesuit or not, most if not all have the hidetail flag. Allows more
freedom in the decision when the tail gets shown or not
This commit is contained in:
Mars
2017-11-17 17:47:26 +01:00
parent aa9bbd877f
commit 4f1561d96f
@@ -97,7 +97,7 @@ var/global/list/body_accessory_by_species = list("None" = null)
animated_icon_state = "null"
/datum/body_accessory/tail/try_restrictions(var/mob/living/carbon/human/H)
if(!H.wear_suit || !(H.wear_suit.flags_inv & HIDETAIL) && !istype(H.wear_suit, /obj/item/clothing/suit/space))
if(!H.wear_suit || !(H.wear_suit.flags_inv & HIDETAIL))
return 1
return 0
@@ -140,4 +140,3 @@ var/global/list/body_accessory_by_species = list("None" = null)
icon_state = "vulptail6"
animated_icon_state = "vulptail6_a"
allowed_species = list("Vulpkanin")