Skip to content

Commit

Permalink
oops, fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Jul 9, 2023
1 parent 98c0f90 commit a21a946
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
4 changes: 3 additions & 1 deletion code/__HELPERS/global_lists.dm
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@
//Default Jobs
for(var/path in subtypesof(/datum/job))
var/datum/job/new_job = new path()
new_job.register()
GLOB.occupations += new_job
GLOB.name_occupations[new_job.name] = new_job
GLOB.type_occupations[path] = new_job

// Keybindings
init_keybindings()
Expand Down
29 changes: 15 additions & 14 deletions code/game/machinery/computer/crew.dm
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,23 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
return data_by_z["[z]"]

var/list/results = list()
var/obj/item/clothing/under/U
var/obj/item/card/id/I
var/turf/pos
var/ijob = JOB_DISPLAY_ORDER_DEFAULT
var/name = "Unknown"
var/assignment
var/oxydam
var/toxdam
var/burndam
var/brutedam
var/area
var/pos_x
var/pos_y
var/life_status

for(var/i in GLOB.human_list)
var/obj/item/clothing/under/U
var/obj/item/card/id/I
var/turf/pos
var/ijob = JOB_DISPLAY_ORDER_DEFAULT
var/name = "Unknown"
var/assignment
var/oxydam
var/toxdam
var/burndam
var/brutedam
var/area
var/pos_x
var/pos_y
var/life_status

var/mob/living/carbon/human/H = i
var/nanite_sensors = FALSE
if(H in SSnanites.nanite_monitored_mobs)
Expand Down

0 comments on commit a21a946

Please sign in to comment.