Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alsoandanswer committed Nov 30, 2023
1 parent e7962c8 commit 1ef8603
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions code/modules/client/preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ var/list/preferences_datums = list()
var/pda_choice = OUTFIT_TAB_PDA
var/headset_choice = OUTFIT_HEADSET
var/primary_radio_slot = "Left Ear"
///Suit sensors setting in the loadout.
var/sensor_setting
var/h_style = "Bedhead 2" //Hair type
var/tail_style = null
Expand Down
9 changes: 7 additions & 2 deletions code/modules/clothing/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1054,8 +1054,13 @@
armor = null
w_class = ITEMSIZE_NORMAL
equip_sound = 'sound/items/equip/jumpsuit.ogg'
var/has_sensor = SUIT_NO_SENSORS ///0 = No sensors, 1 = Sensors, 2 = Locked sensors
var/sensor_mode = SUIT_SENSOR_OFF ///0 = Off, 1 = Report living/dead, 2 = Report detailed damages, 3 = Report location

///SUIT_NO_SENSORS = No sensors, SUIT_HAS_SENSORS = Sensors, SUIT_LOCKED_SENSORS = Locked sensors
var/has_sensor = SUIT_NO_SENSORS

///SUIT_SENSOR_OFF = Off, SUIT_SENSOR_BINARY = Report living/dead, SUIT_SENSOR_VITAL = Report detailed damages, SUIT_SENSOR_TRACKING = Report location
var/sensor_mode = SUIT_SENSOR_OFF

var/displays_id = 1

///0 = unrolled, 1 = rolled, -1 = cannot be toggled
Expand Down

0 comments on commit 1ef8603

Please sign in to comment.