15 lines
453 B
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
local dofile, minetest, nodecore
= dofile, minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
local modname = minetest.get_current_modname()
local path = minetest.get_modpath(modname)
nodecore.hard_stone_strata = 7
dofile(path .. "/node.lua")
dofile(path .. "/biome.lua")
2019-01-23 21:53:26 -05:00
dofile(path .. "/ore.lua")
dofile(path .. "/grasslife.lua")