Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 93ba6f4

Browse files
authored
Vox icon (#22935)
1 parent 1204268 commit 93ba6f4

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

code/game/machinery/computer/crew.dm

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,14 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
153153
// Machinery and the target should be on the same level or different levels of the same station
154154
if(!(z in SSmapping.get_connected_levels(pos)) && !HAS_TRAIT(tracked_mob, TRAIT_MULTIZ_SUIT_SENSORS))
155155
continue
156-
156+
157157
var/jammed = FALSE
158158
for(var/obj/item/jammer/jammer in GLOB.active_jammers)
159159
var/turf/jammer_turf = get_turf(jammer)
160160
if(pos.z == jammer_turf.z && (get_dist(pos, jammer_turf) <= jammer.range))
161161
jammed = TRUE
162162
break
163-
if(jammed) // radio jammers prevent suit sensors
163+
if(jammed) // radio jammers prevent suit sensors
164164
continue
165165

166166
idcard = tracked_mob.wear_id ? tracked_mob.wear_id.GetID() : null
@@ -184,7 +184,7 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
184184
assignment_title = ""
185185
assignment = ""
186186
ijob = 80
187-
187+
188188
if (forced_sensors || uniform.sensor_mode >= SENSOR_LIVING)
189189
life_status = tracked_mob.stat < DEAD
190190
else
@@ -213,6 +213,8 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
213213
species = "Polysmorph"
214214
if (ismoth(tracked_mob))
215215
species = "Moth"
216+
if (isvox(tracked_mob))
217+
species = "Vox"
216218
if (isflyperson(tracked_mob))
217219
species = "Fly"
218220
if (iscatperson(tracked_mob))
@@ -237,7 +239,7 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
237239
is_wounded = TRUE
238240
if(length(tracked_mob.get_missing_limbs())) //check if has missing limbs
239241
is_disabled = TRUE
240-
242+
241243
//check if has generic wounds except for bone one
242244
if(locate(/datum/wound/slash) in tracked_mob.all_wounds)
243245
is_wounded = TRUE
@@ -250,9 +252,9 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
250252

251253
if(locate(/datum/wound/blunt) in tracked_mob.all_wounds) //check if has bone wounds
252254
is_bonecrack = TRUE
253-
255+
254256
if(tracked_mob.radiation > RAD_MOB_SAFE) //safe level before sending alert
255-
is_irradiated = TRUE
257+
is_irradiated = TRUE
256258

257259
if(HAS_TRAIT(tracked_mob, TRAIT_HUSK)) //check if husked
258260
is_husked = TRUE

tgui/packages/tgui/interfaces/CrewConsole.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ const speciesmap = {
4040
"icon": "feather-alt",
4141
"color": "#ffebb8",
4242
},
43+
"Vox": {
44+
"icon": "crow",
45+
"color": "#13c230",
46+
},
4347
"Lizard": {
4448
"icon": "dragon",
4549
"color": "#8bf76a",

0 commit comments

Comments
 (0)