mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
Remove AI subsystems TICKER flag
This commit is contained in:
@@ -3,7 +3,7 @@ SUBSYSTEM_DEF(ai)
|
|||||||
init_order = INIT_ORDER_AI
|
init_order = INIT_ORDER_AI
|
||||||
priority = FIRE_PRIORITY_AI
|
priority = FIRE_PRIORITY_AI
|
||||||
wait = 2 SECONDS
|
wait = 2 SECONDS
|
||||||
flags = SS_NO_INIT|SS_TICKER
|
flags = SS_NO_INIT
|
||||||
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
|
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
|
||||||
|
|
||||||
var/list/processing = list()
|
var/list/processing = list()
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ SUBSYSTEM_DEF(aifast)
|
|||||||
name = "AI (Fast)"
|
name = "AI (Fast)"
|
||||||
init_order = INIT_ORDER_AI_FAST
|
init_order = INIT_ORDER_AI_FAST
|
||||||
priority = FIRE_PRIORITY_AI
|
priority = FIRE_PRIORITY_AI
|
||||||
wait = 5 // This gets run twice a second, but shouldn't do much unless mobs are in combat
|
wait = 0.25 SECONDS // Every quarter second
|
||||||
flags = SS_NO_INIT|SS_TICKER
|
flags = SS_NO_INIT
|
||||||
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
|
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
|
||||||
|
|
||||||
var/list/processing = list()
|
var/list/processing = list()
|
||||||
|
|||||||
Reference in New Issue
Block a user