00b3dc477a
- New fluid wandering API, mostly unified logic, only needs some parameters, plus the "generation check". - More sophisticated behavior seeking down-slopes beyond simple immediate flowing node reach ("subtle slope" detection). - More reliable timing using DNTs. - Set firm movement rate of concrete, molten glass. - Reduce molten glass generations, since it can now be more reliably directed.
24 lines
636 B
Lua
24 lines
636 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")
|
|
include("fluidwander")
|