diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 2e791ca09bd..e7961c7d84f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -1,9 +1,17 @@ /datum/gear/accessory - display_name = "suspenders" - path = /obj/item/clothing/accessory/suspenders + display_name = "silver locket" + path = /obj/item/clothing/accessory/locket slot = slot_tie sort_category = "Accessories" +/datum/gear/accessory/suspenders + display_name = "suspenders" + path = /obj/item/clothing/accessory/suspenders + +/datum/gear/accessory/suspenders/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) + /datum/gear/accessory/waistcoat display_name = "waistcoat" path = /obj/item/clothing/accessory/wcoat_rec @@ -115,14 +123,6 @@ path = /obj/item/clothing/accessory/storage/pouches cost = 2 -/datum/gear/accessory/locket - display_name = "silver locket" - path = /obj/item/clothing/accessory/locket - -/datum/gear/accessory/locket - display_name = "silver locket" - path = /obj/item/clothing/accessory/locket - /datum/gear/accessory/sweater display_name = "sweater" path = /obj/item/clothing/accessory/sweater diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index dac5881b971..51ce20769de 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -64,6 +64,10 @@ path = /obj/item/clothing/suit/apron/overalls cost = 1 +/datum/gear/suit/overalls/New() + ..() + gear_tweaks = list(gear_tweak_free_color_choice) + /datum/gear/suit/surgeryapron display_name = "surgical apron" path = /obj/item/clothing/suit/apron/surgery diff --git a/html/changelogs/VTCobaltblood - EEE.yml b/html/changelogs/VTCobaltblood - EEE.yml new file mode 100644 index 00000000000..bd5fa3f35fc --- /dev/null +++ b/html/changelogs/VTCobaltblood - EEE.yml @@ -0,0 +1,42 @@ +################################ +# 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 +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: VTCobaltblood + +# 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, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Resprited overalls and made them, as well as suspenders, recolorable. Also made the labcoats ligther, and made new hoodies slightly longer." + - bugfix: "Fixed toolbox in-hand side sprites." \ No newline at end of file diff --git a/icons/mob/items/lefthand.dmi b/icons/mob/items/lefthand.dmi index a4c4c532e26..f82a5855f4b 100644 Binary files a/icons/mob/items/lefthand.dmi and b/icons/mob/items/lefthand.dmi differ diff --git a/icons/mob/items/righthand.dmi b/icons/mob/items/righthand.dmi index 7e30e2ca41a..8236d227a4c 100644 Binary files a/icons/mob/items/righthand.dmi and b/icons/mob/items/righthand.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index cc7a7029514..b655e8b510c 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 9326d2e30d3..c1bb574b12c 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 1b53940f08e..80b1ef613fe 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index 827f6ed5966..4c03829d3d1 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ diff --git a/icons/obj/hoodies.dmi b/icons/obj/hoodies.dmi index 7fab9e5fe5a..b328bb5879c 100644 Binary files a/icons/obj/hoodies.dmi and b/icons/obj/hoodies.dmi differ