1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2024-09-21 11:30:23 +02:00
plantlife_modpack/vines/init.lua
2015-02-17 01:31:36 -05:00

15 lines
508 B
Lua

vines = {
name = 'vines',
recipes = {}
}
dofile( minetest.get_modpath( vines.name ) .. "/functions.lua" )
dofile( minetest.get_modpath( vines.name ) .. "/aliases.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!")