Files
Bubberstation/code/_globalvars/lists/status_display.dm
Thunder12345 6618c9d694 Misc File Purge: The Return (#92438)
## 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
2025-08-19 22:35:47 -04:00

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",
))