2
0
Fork 0

Update to eaa5ce2a2db090637b0600a66785d1c410b2fdf0

This commit is contained in:
JeremyStar™ 2024-05-11 12:17:32 +02:00
parent 6f480e406d
commit 864af56021
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -146,7 +146,9 @@ func initialize_scheduler() -> void:
scheduler.process_mode = Node.PROCESS_MODE_ALWAYS
scheduler.connect("timeout", func() -> void:
loggeri.verb("Running scheduler tasks")
for module in modules: await get(module)._schedule()
var modules_reverse: Array[String] = modules.duplicate()
modules_reverse.reverse()
for module in modules_reverse: await get(module)._schedule()
for module in custom_modules_node.get_children(): await module._schedule()
)