mirror of
https://github.com/minetest-mods/ropes.git
synced 2024-11-24 16:33:48 +01:00
e973c4df48
- Easily lets vines spawn on nodes that have the unique vine group name - Updated README.md that explains the groups spawning feature. - Made groups variable local to the registration function and not part of the namespace
14 lines
445 B
Lua
14 lines
445 B
Lua
vines = {
|
|
name = 'vines',
|
|
recipes = {}
|
|
}
|
|
|
|
dofile( minetest.get_modpath( vines.name ) .. "/functions.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/recipes.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/crafts.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/nodes.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/shear.lua" )
|
|
dofile( minetest.get_modpath( vines.name ) .. "/vines.lua" )
|
|
|
|
print("[Vines] Loaded!")
|