Files
SkyratBot 97e8c044ed [MIRROR] idle basic mobs can plan again (#29351)
* 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>
2024-08-17 18:26:08 +00:00

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)