a973bbdbf8
created a few proof-of-concept mechanics. took some textures from minetest game. implemented basic tree growth and stacking in-world crafting.
7 lines
166 B
Lua
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)
|