blob: ea3644cfbf6f82f7e6532226a5a5cf99b2cb4a78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-- Minetest: builtin/constants.lua
--
-- Constants values for use with the Lua API
--
-- Block emerge status constants (for use with core.emerge_area)
core.EMERGE_CANCELLED = 0
core.EMERGE_ERRORED = 1
core.EMERGE_FROM_MEMORY = 2
core.EMERGE_FROM_DISK = 3
core.EMERGE_GENERATED = 4
|