mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
8 lines
508 B
Plaintext
8 lines
508 B
Plaintext
//Languages/species/whitelist.
|
|
GLOBAL_LIST_INIT(all_species, list())
|
|
GLOBAL_LIST_INIT(all_languages, list())
|
|
GLOBAL_LIST_INIT(language_keys, list()) // Table of say codes for all languages
|
|
GLOBAL_LIST_INIT(whitelisted_species, list(SPECIES_HUMAN)) // Species that require a whitelist check.
|
|
// VOREStation edit - include custom species
|
|
GLOBAL_LIST_INIT(playable_species, list(SPECIES_HUMAN, SPECIES_CUSTOM)) // A list of ALL playable species, whitelisted, latejoin or otherwise.
|
|
// VOREStation edit end |