diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index 9624a85ca2..2144a1e394 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -142,15 +142,7 @@ name = "chameleon kit" desc = "Comes with all the clothes you need to impersonate most people. Acting lessons sold seperately." starts_with = list( - /obj/item/clothing/under/chameleon, - /obj/item/clothing/head/chameleon, - /obj/item/clothing/suit/chameleon, - /obj/item/clothing/shoes/chameleon, - /obj/item/weapon/storage/backpack/chameleon, - /obj/item/clothing/gloves/chameleon, - /obj/item/clothing/mask/chameleon, - /obj/item/clothing/glasses/chameleon, - /obj/item/clothing/accessory/chameleon, + /obj/item/weapon/storage/backpack/chameleon/full, /obj/item/weapon/gun/energy/chameleon ) diff --git a/code/modules/clothing/chameleon.dm b/code/modules/clothing/chameleon.dm index 5d5296db77..b9abfabf04 100644 --- a/code/modules/clothing/chameleon.dm +++ b/code/modules/clothing/chameleon.dm @@ -214,6 +214,18 @@ var/mob/M = src.loc M.update_inv_back() +/obj/item/weapon/storage/backpack/chameleon/full + starts_with = list( + /obj/item/clothing/under/chameleon, + /obj/item/clothing/head/chameleon, + /obj/item/clothing/suit/chameleon, + /obj/item/clothing/shoes/chameleon, + /obj/item/clothing/gloves/chameleon, + /obj/item/clothing/mask/chameleon, + /obj/item/clothing/glasses/chameleon, + /obj/item/clothing/accessory/chameleon + ) + //******************** //**Chameleon Gloves** //********************