Move mcl_core to ITEMS modpack and add description

This commit is contained in:
Wuzzy 2017-02-17 23:14:21 +01:00
parent 91950ee026
commit fc02d0730e
177 changed files with 1 additions and 0 deletions

View file

@ -0,0 +1,11 @@
mcl_core = {}
-- Repair percentage for toolrepair
mcl_core.repair = 0.05
-- Load files
dofile(minetest.get_modpath("mcl_core").."/functions.lua")
dofile(minetest.get_modpath("mcl_core").."/nodes.lua")
dofile(minetest.get_modpath("mcl_core").."/tools.lua")
dofile(minetest.get_modpath("mcl_core").."/craftitems.lua")
dofile(minetest.get_modpath("mcl_core").."/crafting.lua")