Skip to content

Commit

Permalink
Fixes consulars not having sensors
Browse files Browse the repository at this point in the history
  • Loading branch information
alsoandanswer committed Dec 10, 2023
1 parent bc5e9c1 commit 265bb75
Show file tree
Hide file tree
Showing 7 changed files with 53 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/background/citizenship/skrell.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/background/citizenship/unathi.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions code/modules/clothing/under/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -365,13 +366,15 @@
/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"

/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"
Expand Down
3 changes: 3 additions & 0 deletions code/modules/clothing/under/xenos/skrell.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions code/modules/clothing/under/xenos/tajara.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
3 changes: 3 additions & 0 deletions code/modules/clothing/under/xenos/unathi.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
41 changes: 41 additions & 0 deletions html/changelogs/wezzy_consular_sensors.yml
Original file line number Diff line number Diff line change
@@ -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."

0 comments on commit 265bb75

Please sign in to comment.