diff --git a/code/game/machinery/computer/crew.dm b/code/game/machinery/computer/crew.dm index 11aab499f5cc..356f1f90e142 100644 --- a/code/game/machinery/computer/crew.dm +++ b/code/game/machinery/computer/crew.dm @@ -155,9 +155,11 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new) JOB_ERT_CHAPLAIN = 225, JOB_ERT_JANITOR = 226, JOB_ERT_DEATHSQUAD = 227, + JOB_NT_REP = 230, JOB_BLUESHIELD = 231, - + // ANYTHING ELSE = UNKNOWN_JOB_ID, Unknowns/custom jobs will appear after civilians, and before assistants + JOB_PRISONER = 998, JOB_ASSISTANT = 999, ) diff --git a/monkestation/code/modules/blueshield/devices/crew_monitor.dm b/monkestation/code/modules/blueshield/devices/crew_monitor.dm index 63549cfc312a..b16c04247b97 100644 --- a/monkestation/code/modules/blueshield/devices/crew_monitor.dm +++ b/monkestation/code/modules/blueshield/devices/crew_monitor.dm @@ -15,7 +15,6 @@ GLOBAL_DATUM_INIT(blueshield_crewmonitor, /datum/crewmonitor/blueshield, new) JOB_CHIEF_MEDICAL_OFFICER = 20, JOB_RESEARCH_DIRECTOR = 30, JOB_CHIEF_ENGINEER = 40, - JOB_QUARTERMASTER = 50, JOB_HEAD_OF_PERSONNEL = 60, JOB_CENTCOM_ADMIRAL = 200, JOB_CENTCOM = 201,