9fb4cf55b2
This has just been an alias to minetest.register_abm for a while now, and all ABM enhancement features have been added directly to the core API.
23 lines
613 B
Lua
23 lines
613 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local include, minetest, nodecore
|
|
= include, minetest, nodecore
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
nodecore.amcoremod()
|
|
|
|
nodecore.register_limited_abm = function(...)
|
|
nodecore.log("warning", "deprecated register_limited_abm in "
|
|
.. (minetest.get_current_modname() or "unknown mod"))
|
|
return minetest.register_abm(...)
|
|
end
|
|
|
|
include("abmmux")
|
|
include("abminvert")
|
|
include("stasis")
|
|
include("dnts")
|
|
include("aism")
|
|
include("soaking")
|
|
include("ambiance")
|
|
include("playerstep")
|
|
include("dynalight")
|