f98e8be5c2
The idea is to merge the pummel logic with crafting recipes, and move them up out of plain old api.
14 lines
459 B
Lua
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")
|