From c30f360bda59cebc886771f50faf517b3a5063af Mon Sep 17 00:00:00 2001 From: Mark van Alphen Date: Sat, 20 Apr 2019 20:43:50 +0200 Subject: [PATCH] Remove accessory check, as it does nothing --- code/modules/clothing/clothing.dm | 9 --------- 1 file changed, 9 deletions(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 56c0dcaa70e..9613ce173af 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -627,15 +627,6 @@ BLIND // can't see anything ..() -/obj/item/clothing/under/attack_hand(mob/user as mob) - //only forward to the attached accessory if the clothing is equipped (not in a storage) - if(accessories.len && src.loc == user) - for(var/obj/item/clothing/accessory/A in accessories) - A.attack_hand(user) - return - - ..() - /obj/item/clothing/under/examine(mob/user) ..(user) switch(src.sensor_mode)