diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm index a09f87df8a53..5e7674c417ad 100644 --- a/code/game/machinery/vending/cm_vending.dm +++ b/code/game/machinery/vending/cm_vending.dm @@ -1282,10 +1282,9 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( if(rankpath) var/obj/item/clothing/accessory/ranks/rank_insignia = new rankpath() var/obj/item/clothing/accessory/patch/uscmpatch = new(get_turf(src)) - var/obj/item/clothing/accessory/patch/falcon/falconpatch = new(get_turf(src)) underclothes.attach_accessory(user, rank_insignia) underclothes.attach_accessory(user, uscmpatch) - underclothes.attach_accessory(user, falconpatch) + if(vend_flags & VEND_UNIFORM_AUTOEQUIP) // autoequip if(istype(new_item, /obj/item) && new_item.flags_equip_slot != NO_FLAGS) //auto-equipping feature here