14 lines
459 B
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
-- SKIP: nodecore
local dofile, minetest
= dofile, minetest
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
local path = minetest.get_modpath(modname)
dofile(path .. "/register_craft.lua")
dofile(path .. "/craft_check.lua")
dofile(path .. "/item_place_node.lua")
dofile(path .. "/register_on_punchnode.lua")