More mcl_core refactoring
This commit is contained in:
parent
722d4cb500
commit
7d2ffe1c92
6 changed files with 420 additions and 412 deletions
|
@ -4,11 +4,14 @@ mcl_core = {}
|
|||
mcl_core.repair = 0.05
|
||||
|
||||
-- Load files
|
||||
dofile(minetest.get_modpath("mcl_core").."/functions.lua")
|
||||
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")
|
||||
dofile(minetest.get_modpath("mcl_core").."/craftitems.lua")
|
||||
dofile(minetest.get_modpath("mcl_core").."/crafting.lua")
|
||||
local modpath = minetest.get_modpath("mcl_core")
|
||||
dofile(modpath.."/functions.lua")
|
||||
dofile(modpath.."/nodes_base.lua") -- Simple solid cubic nodes with simple definitions
|
||||
dofile(modpath.."/nodes_liquid.lua") -- Liquids
|
||||
dofile(modpath.."/nodes_cactuscane.lua") -- Cactus and sugar canes
|
||||
dofile(modpath.."/nodes_trees.lua") -- Tree nodes: Wood, Planks, Sapling, Leaves
|
||||
dofile(modpath.."/nodes_glass.lua") -- Glass
|
||||
dofile(modpath.."/nodes_climb.lua") -- Climbable nodes
|
||||
dofile(modpath.."/nodes_misc.lua") -- Other and special nodes
|
||||
dofile(modpath.."/craftitems.lua")
|
||||
dofile(modpath.."/crafting.lua")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue