Added the expeditionary jumpsuits to loadout list under suits and uniforms within new YW file to avoid wonderful clashes where possible.

the selection comes up as "Expeditionary jumpsuit Selection", and gives drop down selection choice.
This commit is contained in:
Dwaggy
2017-09-21 14:21:55 +01:00
parent dd936f976b
commit f83a9a79ba
2 changed files with 12 additions and 0 deletions
@@ -0,0 +1,11 @@
/datum/gear/uniform/suit/expeditionsuit
display_name = "Expeditionary jumpsuit Selection"
path = /obj/item/clothing/under/utility/expeditionary/
/datum/gear/uniform/suit/expeditionsuit/New()
..()
var/list/expsuits = list()
for(var/expsuit in typesof(/obj/item/clothing/under/utility/expeditionary/))
var/obj/item/clothing/suit/expsuit_type = expsuit
expsuits[initial(expsuit_type.name)] = expsuit_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(expsuits))