mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-11 20:05:05 -05:00
13 lines
293 B
Lua
13 lines
293 B
Lua
|
-- 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
|