Skip to content

Commit

Permalink
[MIRROR] Make Chefs show up as service on the crew monitor (#1095)
Browse files Browse the repository at this point in the history
* Make Chefs show up as service on the crew monitor

* Fixes conflict, increases  job numbers by one

---------

Co-authored-by: _0Steven <[email protected]>
Co-authored-by: SomeRandomOwl <[email protected]>
  • Loading branch information
3 people authored and StealsThePRs committed Feb 22, 2024
1 parent 2834330 commit f24a47b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions code/__DEFINES/jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
#define JOB_BARTENDER "Bartender"
#define JOB_BOTANIST "Botanist"
#define JOB_COOK "Cook"
#define JOB_CHEF "Chef" // Alternate cook title.
#define JOB_JANITOR "Janitor"
#define JOB_CLOWN "Clown"
#define JOB_MIME "Mime"
Expand Down
21 changes: 11 additions & 10 deletions code/game/machinery/computer/crew.dm
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,17 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
// 60+: Service
JOB_HEAD_OF_PERSONNEL = 60,
JOB_BARTENDER = 61,
JOB_COOK = 62,
JOB_BOTANIST = 63,
JOB_CURATOR = 64,
JOB_CHAPLAIN = 65,
JOB_CLOWN = 66,
JOB_MIME = 67,
JOB_JANITOR = 68,
JOB_LAWYER = 69,
JOB_BARBER = 71, // NOVA EDIT ADDITION
JOB_BOUNCER = 72, // NOVA EDIT ADDITION
JOB_CHEF = 62,
JOB_COOK = 63,
JOB_BOTANIST = 64,
JOB_CURATOR = 65,
JOB_CHAPLAIN = 66,
JOB_CLOWN = 67,
JOB_MIME = 68,
JOB_JANITOR = 69,
JOB_LAWYER = 70,
JOB_BARBER = 72, // NOVA EDIT ADDITION
JOB_BOUNCER = 73, // NOVA EDIT ADDITION
// 200-239: Centcom
JOB_CENTCOM_ADMIRAL = 200,
JOB_CENTCOM = 201,
Expand Down

0 comments on commit f24a47b

Please sign in to comment.