Files
Bubberstation/code/_globalvars/lists/basic_ai.dm
LemonInTheDark 7f5d9d7e09 Tick checks unplanned controllers (#87506)
Shakes fist at random overtime
2024-10-30 09:48:27 +13:00

20 lines
520 B
Plaintext

///all basic ai subtrees
GLOBAL_LIST_EMPTY(ai_subtrees)
///basic ai controllers based on status
GLOBAL_LIST_INIT(ai_controllers_by_status, list(
AI_STATUS_ON = list(),
AI_STATUS_OFF = list(),
AI_STATUS_IDLE = list(),
))
///basic ai controllers based on their z level
GLOBAL_LIST_EMPTY(ai_controllers_by_zlevel)
///basic ai controllers that are currently performing idled behaviors
GLOBAL_LIST_INIT_TYPED(unplanned_controllers, /list/datum/ai_controller, list(
AI_STATUS_ON = list(),
AI_STATUS_IDLE = list(),
))