diff --git a/code/modules/client/preference_setup/loadout/items/xeno/machine.dm b/code/modules/client/preference_setup/loadout/items/xeno/machine.dm index a654c4cd720..dc9616a10f0 100644 --- a/code/modules/client/preference_setup/loadout/items/xeno/machine.dm +++ b/code/modules/client/preference_setup/loadout/items/xeno/machine.dm @@ -193,7 +193,7 @@ ABSTRACT_TYPE(/datum/gear/augment/machine) sort_category = "Xenowear - IPC" flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION -/datum/gear/accessory/goldendeep +/datum/gear/uniform/goldendeepshirt display_name = "golden deep shirt selection" description = "A selection of shirts and other tops worn by members of the Golden Deep." path = /obj/item/clothing/accessory/goldendeep @@ -201,7 +201,7 @@ ABSTRACT_TYPE(/datum/gear/augment/machine) sort_category = "Xenowear - IPC" flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION -/datum/gear/accessory/goldendeep/New() +/datum/gear/uniform/goldendeepshirt/New() ..() var/list/goldendeepshirt = list() goldendeepshirt["golden deep fine shirt"] = /obj/item/clothing/under/dressshirt/goldendeep @@ -212,15 +212,16 @@ ABSTRACT_TYPE(/datum/gear/augment/machine) /datum/gear/accessory/goldendeepouter display_name = "golden deep outer layer selection" description = "A selection of tops suited for use as outer layers worn by members of the Golden Deep." - path = /obj/item/clothing/accessory/goldendeep/gambeson + path = /obj/item/clothing/accessory/goldendeep whitelisted = list(SPECIES_IPC, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU, SPECIES_IPC_BISHOP, SPECIES_IPC_SHELL) sort_category = "Xenowear - IPC" flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION + slot = slot_tie /datum/gear/accessory/goldendeepouter/New() ..() var/list/goldendeepouter = list() - goldendeepouter["golden deep quilted gambeson"] = /obj/item/clothing/accessory/goldendeep/gambeson + goldendeepouter["golden deep quilted gambeson"] = /obj/item/clothing/accessory/goldendeep goldendeepouter["golden deep tabbard"] = /obj/item/clothing/accessory/goldendeep/tabbard goldendeepouter["golden deep pullover"] = /obj/item/clothing/accessory/goldendeep/pullover goldendeepouter["golden deep rain garb"] = /obj/item/clothing/accessory/goldendeep/raingarb diff --git a/code/modules/clothing/factions/goldendeep.dm b/code/modules/clothing/factions/goldendeep.dm index e21138219db..272233bc279 100644 --- a/code/modules/clothing/factions/goldendeep.dm +++ b/code/modules/clothing/factions/goldendeep.dm @@ -102,11 +102,14 @@ item_state = "cloth_wrapped_uniform" // outerwear -/obj/item/clothing/accessory/goldendeep/gambeson +/obj/item/clothing/accessory/goldendeep name = "quilted gambeson" desc = " Intricately woven fibers resemble armor of old, but now are reinforced for the wear and tear caused by moving metal joints." + icon = 'icons/obj/item/clothing/accessory/goldendeep.dmi' icon_state = "quilted_gambeson" item_state = "quilted_gambeson" + contained_sprite = TRUE + has_accents = TRUE /obj/item/clothing/accessory/goldendeep/tabbard name = "valiant tabbard" diff --git a/html/changelogs/SimpleMaroon-goldendeepoutfitfix.yml b/html/changelogs/SimpleMaroon-goldendeepoutfitfix.yml new file mode 100644 index 00000000000..759e6004493 --- /dev/null +++ b/html/changelogs/SimpleMaroon-goldendeepoutfitfix.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: SimpleMaroon + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixed Golden Deep shirts not showing up in character preview and Golden Deep outerwear being invisible." diff --git a/icons/obj/item/clothing/accessory/goldendeep.dmi b/icons/obj/item/clothing/accessory/goldendeep.dmi index 7a710fe661c..56ea2fdb125 100644 Binary files a/icons/obj/item/clothing/accessory/goldendeep.dmi and b/icons/obj/item/clothing/accessory/goldendeep.dmi differ