diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index feca7b1ec1c..409f711ea3a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -61,6 +61,7 @@ softcaps["softcap, cargo"] = /obj/item/clothing/head/softcap/cargo softcaps["softcap, mining"] = /obj/item/clothing/head/softcap/miner softcaps["softcap, janitor"] = /obj/item/clothing/head/softcap/janitor + softcaps["softcap, tcfl"] = /obj/item/clothing/head/softcap/tcfl gear_tweaks += new /datum/gear_tweak/path(softcaps) diff --git a/code/modules/clothing/head/soft_caps.dm b/code/modules/clothing/head/soft_caps.dm index 5cd3e1a71c3..7bc84304609 100644 --- a/code/modules/clothing/head/soft_caps.dm +++ b/code/modules/clothing/head/soft_caps.dm @@ -49,6 +49,12 @@ icon_state = "softcap_red" item_state = "softcap_red" +/obj/item/clothing/head/softcap/tcfl + name = "tcfl cap" + desc = "A rugged softcap in TCFL colours, go Biesel!" + icon_state = "tcfl" + item_state = "tcfl" + // Departmental softcaps. By Wowzewow (Wezzy). /obj/item/clothing/head/softcap/captain diff --git a/html/changelogs/tcflcap.yml b/html/changelogs/tcflcap.yml new file mode 100644 index 00000000000..dcd0082fbe2 --- /dev/null +++ b/html/changelogs/tcflcap.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf & bunkyb + +delete-after: True + +changes: + - rscadd: "A TCFL softcap has been added under the softcap selection in the loadout." diff --git a/icons/obj/clothing/hats/soft_caps.dmi b/icons/obj/clothing/hats/soft_caps.dmi index fc19cf47edf..23bab43dca9 100644 Binary files a/icons/obj/clothing/hats/soft_caps.dmi and b/icons/obj/clothing/hats/soft_caps.dmi differ