diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 40459ee626d..57cebe09e31 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -116,8 +116,9 @@ /datum/gear/accessory/webbing display_name = "webbing, simple" - path = /obj/item/clothing/accessory/storage/webbing + path = /obj/item/clothing/accessory/storage/webbing/grayscale cost = 2 + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION /datum/gear/accessory/brown_pouches display_name = "drop pouches, engineering" diff --git a/code/modules/clothing/under/accessories/storage.dm b/code/modules/clothing/under/accessories/storage.dm index baaa2033ef8..b4a4c51280e 100644 --- a/code/modules/clothing/under/accessories/storage.dm +++ b/code/modules/clothing/under/accessories/storage.dm @@ -49,6 +49,9 @@ desc = "Sturdy mess of synthcotton belts and buckles, ready to share your burden." icon_state = "webbing" +/obj/item/clothing/accessory/storage/webbing/grayscale + icon_state = "webbing_g" + /obj/item/clothing/accessory/storage/black_vest name = "black webbing vest" desc = "Robust black synthcotton vest with lots of pockets to hold whatever you need, but cannot hold in hands." diff --git a/html/changelogs/geeves-webbing_colour.yml b/html/changelogs/geeves-webbing_colour.yml new file mode 100644 index 00000000000..d09895f966d --- /dev/null +++ b/html/changelogs/geeves-webbing_colour.yml @@ -0,0 +1,6 @@ +author: Geeves + +delete-after: True + +changes: + - rscadd: "You can now colour simple webbings in the loadout." \ No newline at end of file diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 39593602c23..a692dd791d3 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index 8bf1e1441c4..645cab4b570 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ