mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-15 01:54:52 +01:00
6618c9d694
## About The Pull Request Purged several files inthe theme of misc.dm and broken the contents out into better organised files. Incidentally done some minor cleanup by removing an unused global list referring to a string file that no-longer exists, and removing a useless proc that replicated the behaviour of file2list(). ## Why It's Good For The Game See #60358 and all its successors ## Changelog 🆑 code: Reduced the number of files named misc.dm or similar by 14%. /🆑 # Conflicts: # code/_globalvars/lists/flavor_misc.dm
21 lines
487 B
Plaintext
21 lines
487 B
Plaintext
// All valid inputs to status display post_status
|
|
GLOBAL_LIST_INIT(status_display_approved_pictures, list(
|
|
"blank",
|
|
"shuttle",
|
|
"default",
|
|
"biohazard",
|
|
"lockdown",
|
|
"greenalert",
|
|
"bluealert",
|
|
"redalert",
|
|
"deltaalert",
|
|
"radiation",
|
|
"currentalert", //For automatic set of status display on current level
|
|
))
|
|
|
|
// Members of status_display_approved_pictures that are actually states and not alert values
|
|
GLOBAL_LIST_INIT(status_display_state_pictures, list(
|
|
"blank",
|
|
"shuttle",
|
|
))
|