19 lines
541 B
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
2018-11-03 11:26:15 -04:00
local dofile, minetest, nodecore
= dofile, minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
2018-11-03 11:26:15 -04:00
nodecore.register_leaf_drops, nodecore.registered_leaf_drops
= nodecore.mkreg()
local modname = minetest.get_current_modname()
2018-11-02 00:08:42 -04:00
local path = minetest.get_modpath(modname)
2018-11-02 00:08:42 -04:00
dofile(path .. "/node.lua")
dofile(path .. "/stick.lua")
dofile(path .. "/schematic.lua")
2018-11-02 00:08:42 -04:00
dofile(path .. "/decor.lua")
dofile(path .. "/cultivation.lua")