mirror of
https://github.com/Skyrat-SS13/Skyrat-tg.git
synced 2026-07-15 09:54:03 +01:00
97e8c044ed
* idle basic mobs can plan again * ready --------- Co-authored-by: Ben10Omintrix <138636438+Ben10Omintrix@users.noreply.github.com> Co-authored-by: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com>
13 lines
316 B
Plaintext
13 lines
316 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)
|