magma_conduits/init.lua
2018-11-03 15:38:55 -06:00

15 lines
384 B
Lua

magma_conduits = {}
local modpath = minetest.get_modpath(minetest.get_current_modname())
dofile(modpath.."/config.lua")
dofile(modpath.."/voxelarea_iterator.lua")
dofile(modpath.."/hot_rock.lua")
if magma_conduits.config.remove_default_lava then
minetest.register_alias_force("mapgen_lava_source", "air")
end
dofile(modpath.."/magma_veins.lua")
dofile(modpath.."/volcanoes.lua")