Make singlenode the default mapgen.

This commit is contained in:
Amaz1 2014-05-02 20:10:33 +01:00
parent 17f3784a9b
commit 5caf691165

View file

@ -69,6 +69,10 @@ minetest.register_on_dignode(function(pos, oldnode, digger)
end end
end) end)
minetest.register_on_mapgen_init(function(mgparams)
minetest.set_mapgen_params({mgname="singlenode"})
end)
-- ABMs -- ABMs
-- Air spreads -- Air spreads
@ -169,4 +173,4 @@ minetest.register_abm({
action = function(pos, node, active_object_count, active_object_count_wider) action = function(pos, node, active_object_count, active_object_count_wider)
moonrealm_appletree(pos) moonrealm_appletree(pos)
end, end,
}) })