blockgame/mods/bg_crafting/init.lua
trans_soup a973bbdbf8 initial commit.
created a few proof-of-concept mechanics. took some textures from
minetest game. implemented basic tree growth and stacking in-world
crafting.
2023-10-11 09:17:21 +02:00

7 lines
166 B
Lua

local modname = minetest.get_current_modname()
load_file("api")
minetest.register_on_placenode(function (...)
return blockgame.crafting.handle_placement(...)
end)