cargo shorts and icon organizing

This commit is contained in:
Darlantan
2021-08-29 01:46:06 -04:00
parent 470992f1f8
commit f9f8889991
9 changed files with 32 additions and 6 deletions

View File

@@ -96,3 +96,16 @@
/datum/gear/uniform/vrsuit //Pathname of this particular item in the menu.
display_name = "vr suit" //The name of the suit as shown in the loadout menu
path = /obj/item/clothing/under/vrsuit //Pathname of the suit which is found in custom_clothes_ch.dm
// Cargo shorts. The full-of-pockets kind, not the department
/datum/gear/uniform/cshorts
display_name = "cargo shorts"
path = /obj/item/clothing/under/shorts/cshorts/khaki
/datum/gear/uniform/cshorts/New()
..()
var/list/cargo_shorts = list(
"Olive cargo shorts" = /obj/item/clothing/under/shorts/cshorts/olive,
"Khaki cargo shorts" = /obj/item/clothing/under/shorts/cshorts/khaki
)
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cargo_shorts))