mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-03 05:52:43 +00:00
16 lines
317 B
Plaintext
16 lines
317 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/departments = list(
|
|
ROLE_COMMAND,
|
|
ROLE_SECURITY,
|
|
ROLE_ENGINEERING,
|
|
ROLE_MEDICAL,
|
|
ROLE_RESEARCH,
|
|
ROLE_CARGO,
|
|
ROLE_CIVILIAN,
|
|
ROLE_SYNTHETIC
|
|
)
|
|
|