2017-01-31 23:32:56 +01:00
|
|
|
mcl_core = {}
|
|
|
|
|
2017-02-14 17:17:49 +01:00
|
|
|
-- Repair percentage for toolrepair
|
|
|
|
mcl_core.repair = 0.05
|
|
|
|
|
2017-01-31 23:32:56 +01:00
|
|
|
-- Load files
|
|
|
|
dofile(minetest.get_modpath("mcl_core").."/functions.lua")
|
2017-07-07 16:37:05 +02:00
|
|
|
dofile(minetest.get_modpath("mcl_core").."/nodes_base.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_core").."/nodes_cactuscane.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_core").."/nodes_trees.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_core").."/nodes_glass.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_core").."/nodes_misc.lua")
|
2017-01-31 23:32:56 +01:00
|
|
|
dofile(minetest.get_modpath("mcl_core").."/craftitems.lua")
|
|
|
|
dofile(minetest.get_modpath("mcl_core").."/crafting.lua")
|