Fixes some colorable loadout hats (#10711)

The parents of these ended up overwriting the path, meaning the colorable versions were using the base version instead of the colorable one(which is white, instead of gray).
This commit is contained in:
fernerr
2020-12-03 10:03:44 +01:00
committed by GitHub
parent 8dfa6e57f6
commit 9ef7db1adf
2 changed files with 7 additions and 3 deletions

View File

@@ -32,7 +32,7 @@
gear_tweaks += new/datum/gear_tweak/path(bandanas)
/datum/gear/head/bandana/colorable
/datum/gear/head/bandana_color
display_name = "bandana (colorable)"
path = /obj/item/clothing/head/bandana/colorable
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
@@ -62,7 +62,7 @@
gear_tweaks += new/datum/gear_tweak/path(softcaps)
/datum/gear/head/softcap/colorable
/datum/gear/head/softcap_color
display_name = "softcap (colorable)"
path = /obj/item/clothing/head/softcap/colorable
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
@@ -91,7 +91,7 @@
gear_tweaks += new/datum/gear_tweak/path(berets)
/datum/gear/head/beret/color
/datum/gear/head/beret_color
display_name = "beret (colorable)"
path = /obj/item/clothing/head/beret/colorable
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION