mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-15 20:52:07 +00:00
* 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.
16 lines
370 B
Plaintext
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
|
|
)
|
|
|