Adds pride pins to loadout

From https://github.com/tgstation/tgstation/pull/65242/files
This commit is contained in:
listerla
2022-03-18 09:30:01 -04:00
parent ff93a129ea
commit 1850ec171a
4 changed files with 46 additions and 1 deletions
@@ -295,3 +295,15 @@
/datum/gear/accessory/virginkiller/New()
..()
gear_tweaks += gear_tweak_free_color_choice
/datum/gear/accessory/pride
display_name = "pride pin selection"
path = /obj/item/clothing/accessory/pride
/datum/gear/accessory/pride/New()
..()
var/list/pridepins = list()
for(var/pridepin in typesof(/obj/item/clothing/accessory/pride))
var/obj/item/clothing/accessory/pridepin_type = pridepin
pridepins[initial(pridepin_type.name)] = pridepin_type
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(pridepins))