From 07cf338f87da466f24e85545a78a318b7e0606b1 Mon Sep 17 00:00:00 2001 From: fernerr <35879136+fernerr@users.noreply.github.com> Date: Tue, 24 Sep 2019 00:19:59 +0200 Subject: [PATCH] Makes the IAC vest able to store things (#7015) --- .../preference_setup/loadout/loadout_suit.dm | 2 +- code/modules/clothing/suits/labcoat.dm | 2 +- html/changelogs/190919-coding_iacvest.yml | 41 +++++++++++++++++++ 3 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/190919-coding_iacvest.yml diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index ec042aba939..04c63914455 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -78,7 +78,7 @@ /datum/gear/suit/iacvest display_name = "IAC vest" description = "It's a lightweight vest. Made of a dark, navy mesh with highly-reflective white material, designed to be worn by the Interstellar Aid Corps." - path = /obj/item/clothing/suit/iacvest + path = /obj/item/clothing/suit/storage/iacvest allowed_roles = list("Chief Medical Officer", "Medical Doctor", "Pharmacist", "Paramedic", "Medical Resident") /datum/gear/suit/poncho diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index e65305efa44..b5ba37d98ea 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -103,7 +103,7 @@ icon_open = "labcoat_tox_open" icon_closed = "labcoat_tox" -/obj/item/clothing/suit/iacvest +/obj/item/clothing/suit/storage/iacvest desc = "It's a lightweight vest. Made of a dark, navy mesh with highly-reflective white material, designed to be worn by the Interstellar Aid Corps as a high-visibility vest, over any other clothing. The I.A.C. logo is prominently displayed on the back of the vest, between the shoulders." name = "IAC vest" icon_state = "iac_vest_s" diff --git a/html/changelogs/190919-coding_iacvest.yml b/html/changelogs/190919-coding_iacvest.yml new file mode 100644 index 00000000000..c8ebdaaaae6 --- /dev/null +++ b/html/changelogs/190919-coding_iacvest.yml @@ -0,0 +1,41 @@ +################################ +# 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: Ferner + +# 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: + - tweak: "The IAC Vest can now store things like other vests."