mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
* It was changed in most places to /obj/item/clothing/shoes/boots/combat but some were not. The changling subtype prevented any compile errors.
16 lines
322 B
Plaintext
16 lines
322 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(
|
|
ROLE_COMMAND,
|
|
ROLE_SECURITY,
|
|
ROLE_ENGINEERING,
|
|
ROLE_MEDICAL,
|
|
ROLE_RESEARCH,
|
|
ROLE_CARGO,
|
|
ROLE_CIVILIAN,
|
|
ROLE_SYNTHETIC
|
|
)
|
|
|