From 30c1d712574f7bc10c0c06d8448f7a395fe5a9fe Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Sun, 20 Mar 2016 14:08:30 -0400 Subject: [PATCH] tiger and his weird collar needs --- code/modules/mob/living/carbon/human/human.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 7e5515225d4..71bdc2f7cc8 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1923,4 +1923,9 @@ . = ..() if(wear_id) - . |= wear_id.GetAccess() \ No newline at end of file + . |= wear_id.GetAccess() + if(istype(w_uniform, /obj/item/clothing/under)) + var/obj/item/clothing/under/U = w_uniform + if(U.accessories) + for(var/obj/item/clothing/accessory/A in U.accessories) + . |= A.GetAccess() \ No newline at end of file