mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
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
|
|
)
|
|
|