mirror of
git://repo.or.cz/rocks.git
synced 2024-11-16 07:20:40 +01:00
28 lines
626 B
Lua
28 lines
626 B
Lua
minetest.log("info","[rocks] mod initializing")
|
|
|
|
-- Load translation library if intllib is installed
|
|
|
|
if (minetest.get_modpath("intllib")) then
|
|
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
|
S = intllib.Getter(minetest.get_current_modname())
|
|
else
|
|
S = function ( s ) return s end
|
|
end
|
|
|
|
rocks={}
|
|
rocksl={}
|
|
|
|
rocksl.print=function(text)
|
|
print("[rocks] "..text)
|
|
end
|
|
|
|
local modpath=minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
dofile(modpath.."/mapgen.lua")
|
|
dofile(modpath.."/sed.lua")
|
|
dofile(modpath.."/ign.lua")
|
|
|
|
minetest.register_on_mapgen_init(function(mapgen_params)
|
|
-- todo: disable caves and ores
|
|
end)
|