[MIRROR] Ports over masquerade masks from Nova Sector (#12094)

Co-authored-by: NickBelmont <89628295+NickBelmont@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-12-10 08:03:44 -07:00
committed by GitHub
parent 1f512b97d8
commit d7415d50f7
7 changed files with 46 additions and 164 deletions
@@ -100,3 +100,15 @@
/datum/gear/mask/wrestling/New()
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/mask/masquerade
display_name = "masquerade mask selection"
path = /obj/item/clothing/mask/masquerade
/datum/gear/mask/masquerade/New()
..()
var/list/masks = list()
for(var/mask in typesof(/obj/item/clothing/mask/masquerade))
var/obj/item/clothing/mask/mask_type = mask
masks[initial(mask_type.name)] = mask_type
gear_tweaks += new/datum/gear_tweak/path(sortTim(masks, GLOBAL_PROC_REF(cmp_text_asc)))