Files
Polaris/code/modules/metric/metric.dm
Neerti 24fbd0b87e Half-Refactors Jobs (#6762)
* Somewhat cleans up a piece of job code, makes new ID computers not be awful.

* Changes ROLE_ defines to DEPARTMENT_ to be clearer. Backports the new ID computer's assignment section of its UI to the old ID computer.

* Swaps back to southern cross map.

* Removes a block of commented code.
2020-03-03 13:27:37 -08:00

16 lines
370 B
Plaintext

// This is a global datum used to retrieve certain information about the round, such as activity of a department or a specific
// player.
/datum/metric
var/list/departments = list(
DEPARTMENT_COMMAND,
DEPARTMENT_SECURITY,
DEPARTMENT_ENGINEERING,
DEPARTMENT_MEDICAL,
DEPARTMENT_RESEARCH,
DEPARTMENT_CARGO,
DEPARTMENT_CIVILIAN,
DEPARTMENT_SYNTHETIC
)