[GBP NO UPDATE] Restricts some jumpsuits from appearing with chameleon gear (#19472)

* Restricts some jumpsuits from appearing with chameleon gear

* This is not actually a basetype that shouldn't be seen in game
This commit is contained in:
ElorgRHG
2022-10-28 20:21:21 +02:00
committed by GitHub
parent c456bdefdc
commit de9f949994
+18 -1
View File
@@ -217,7 +217,24 @@
chameleon_action = new(src)
chameleon_action.chameleon_type = /obj/item/clothing/under
chameleon_action.chameleon_name = "Jumpsuit"
chameleon_action.chameleon_blacklist = typecacheof(list(/obj/item/clothing/under, /obj/item/clothing/under/color, /obj/item/clothing/under/rank), only_root_path = TRUE)
chameleon_action.chameleon_blacklist = typecacheof(list(
/obj/item/clothing/under,
/obj/item/clothing/under/misc,
/obj/item/clothing/under/dress,
/obj/item/clothing/under/pants,
/obj/item/clothing/under/color,
/obj/item/clothing/under/retro,
/obj/item/clothing/under/solgov,
/obj/item/clothing/under/suit,
/obj/item/clothing/under/costume,
/obj/item/clothing/under/rank,
/obj/item/clothing/under/rank/cargo,
/obj/item/clothing/under/rank/civilian,
/obj/item/clothing/under/rank/engineering,
/obj/item/clothing/under/rank/medical,
/obj/item/clothing/under/rank/rnd,
/obj/item/clothing/under/rank/security,
), only_root_path = TRUE)
chameleon_action.initialize_disguises()
/obj/item/clothing/under/chameleon/Destroy()