mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-18 10:33:30 +01:00
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:
@@ -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")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user