document what run_each_serverstart does in initialize #14
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add examples and usecases for the various ways to start a function. When does minetest.after run? when does on_mods_loaded run? Which comes first?
Idk why, but here's a call graph:
core.after()is impletemnted in lua builtins and just uses register_globalstep() callback to process the queue.So,
on_mods_loadedis called before first server step is processed, andaftercallbacks are processed during steps.