Fixes all earrings being grey by default (#17608)

Co-authored-by: VM_USER <VM_USER>
This commit is contained in:
TheToaster98
2025-04-27 01:19:36 +02:00
committed by GitHub
co-authored by VM_USER <VM_USER>
parent 8d8635481e
commit 7526f4a82e
@@ -40,4 +40,18 @@
earrings["dangle, platinum"] = /obj/item/clothing/ears/earring/dangle/platinum
earrings["dangle, diamond"] = /obj/item/clothing/ears/earring/dangle/diamond
gear_tweaks += new/datum/gear_tweak/path(earrings)
/datum/gear/ears/earringscolour
display_name = "earring selection (colourable)"
description = "A selection of eye-catching earrings, now colourable!"
path = /obj/item/clothing/ears/earring
/datum/gear/ears/earringscolour/New()
..()
var/earringscolour = list()
earringscolour["stud"] = /obj/item/clothing/ears/earring/stud
earringscolour["dangle"] = /obj/item/clothing/ears/earring/dangle
gear_tweaks += new/datum/gear_tweak/path(earringscolour)
gear_tweaks += gear_tweak_free_color_choice