Aaron Suen f98e8be5c2 Started a large refactor project.
The idea is to merge the pummel logic with crafting recipes,
and move them up out of plain old api.
2019-02-03 09:00:09 -05:00

14 lines
459 B
Lua

-- 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")