diff --git a/code/modules/background/citizenship/skrell.dm b/code/modules/background/citizenship/skrell.dm index 8e399e42574..5e2489d8f30 100644 --- a/code/modules/background/citizenship/skrell.dm +++ b/code/modules/background/citizenship/skrell.dm @@ -70,7 +70,7 @@ /datum/outfit/job/representative/consular/nralakk name = "Nralakk Consular Officer" - uniform = /obj/item/clothing/under/skrell + uniform = /obj/item/clothing/under/skrell/consular backpack_contents = list( /obj/item/device/camera = 1 ) diff --git a/code/modules/background/citizenship/unathi.dm b/code/modules/background/citizenship/unathi.dm index fe6d1fb0af2..1709d662c19 100644 --- a/code/modules/background/citizenship/unathi.dm +++ b/code/modules/background/citizenship/unathi.dm @@ -67,7 +67,7 @@ /datum/outfit/job/representative/consular/izweski name = "Izweski Hegemony Consular Officer" - uniform = /obj/item/clothing/under/unathi + uniform = /obj/item/clothing/under/unathi/consular backpack_contents = list(/obj/item/device/camera = 1) belt = /obj/item/gun/energy/pistol/hegemony diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 57957cf4151..a6284a76358 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -8,6 +8,7 @@ /obj/item/clothing/under/gearharness name = "gear harness" desc = "Tight fitting gear harness." + has_sensor = SUIT_HAS_SENSORS icon_state = "harness" worn_state = "harness" item_state = "w_suit" @@ -365,6 +366,7 @@ /obj/item/clothing/under/suit_jacket/navy name = "navy suit" desc = "A navy suit and red tie, intended for the station's finest." + has_sensor = SUIT_HAS_SENSORS icon_state = "navy_suit" item_state = "bl_suit" worn_state = "navy_suit" @@ -372,6 +374,7 @@ /obj/item/clothing/under/suit_jacket/burgundy name = "burgundy suit" desc = "A burgundy suit and black tie. Somewhat formal." + has_sensor = SUIT_HAS_SENSORS icon_state = "burgundy_suit" item_state = "r_suit" worn_state = "burgundy_suit" diff --git a/code/modules/clothing/under/xenos/skrell.dm b/code/modules/clothing/under/xenos/skrell.dm index bb55cb74a9d..38b360e5808 100644 --- a/code/modules/clothing/under/xenos/skrell.dm +++ b/code/modules/clothing/under/xenos/skrell.dm @@ -6,6 +6,9 @@ item_state = "skrell_formal" contained_sprite = TRUE +/obj/item/clothing/under/skrell/consular + has_sensor = SUIT_HAS_SENSORS + /obj/item/clothing/under/skrell/qeblak name = "qeblak ceremonial garment" desc = "A traditional garment worn by Qeblak Star Keepers" diff --git a/code/modules/clothing/under/xenos/tajara.dm b/code/modules/clothing/under/xenos/tajara.dm index 27b1cf26825..54e6a158300 100644 --- a/code/modules/clothing/under/xenos/tajara.dm +++ b/code/modules/clothing/under/xenos/tajara.dm @@ -248,6 +248,7 @@ /obj/item/clothing/under/tajaran/consular name = "people's republic consular uniform" desc = "An olive uniform used by the diplomatic service of the People's Republic of Adhomai." + has_sensor = SUIT_HAS_SENSORS icon_state = "pra_consular" item_state = "pra_consular" diff --git a/code/modules/clothing/under/xenos/unathi.dm b/code/modules/clothing/under/xenos/unathi.dm index 35ccc91c42a..9c740526d79 100644 --- a/code/modules/clothing/under/xenos/unathi.dm +++ b/code/modules/clothing/under/xenos/unathi.dm @@ -7,6 +7,9 @@ item_state = "tunic" contained_sprite = TRUE +/obj/item/clothing/under/unathi/consular + has_sensor = SUIT_HAS_SENSORS + /obj/item/clothing/under/unathi/jizixi name = "jizixi dress" desc = "A striking, modern dress typically worn by Moghean women of high birth." diff --git a/html/changelogs/wezzy_consular_sensors.yml b/html/changelogs/wezzy_consular_sensors.yml new file mode 100644 index 00000000000..27114b16e16 --- /dev/null +++ b/html/changelogs/wezzy_consular_sensors.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: Wowzewow (Wezzy) + +# 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: + - bugfix: "Fixes consulars not having suit sensors."