Add aquamarine tesserect.

This commit is contained in:
Duane 2016-06-09 07:42:17 -05:00
parent a6497392bd
commit 8912eb85cd
10 changed files with 101 additions and 2 deletions

View file

@ -3,10 +3,20 @@ fun_caves.version = "1.0"
fun_caves.time_factor = 10
fun_caves.light_max = 8
fun_caves.path = minetest.get_modpath(minetest.get_current_modname())
fun_caves.world = minetest.get_worldpath()
fun_caves.DEBUG = false
local inp = io.open(fun_caves.world..'/fun_caves_data.txt','r')
if inp then
local d = inp:read('*a')
fun_caves.db = minetest.deserialize(d)
else
fun_caves.db = {}
end
minetest.register_on_mapgen_init(function(mgparams)
minetest.set_mapgen_params({flags="nocaves,nodungeons"})
end)