diff --git a/code/game/objects/items/armor_kits.dm b/code/game/objects/items/armor_kits.dm
index 906d7c5f81..b8217226c6 100644
--- a/code/game/objects/items/armor_kits.dm
+++ b/code/game/objects/items/armor_kits.dm
@@ -17,8 +17,8 @@
if(C.damaged_clothes)
to_chat(user,"You should repair the damage done to [C] first.")
return
- if(C.attached_accessory)
- to_chat(user,"Kind of hard to sew around [C.attached_accessory].")
+ if(C.attached_accessories.len)
+ to_chat(user,"Kind of hard to sew around [C.attached_accessories.Join(", ")].")
return
if(C.armor.getRating("melee") < 10)
C.armor = C.armor.setRating("melee" = 10)