From 255fc49840f93eebcb81b794d98459f3bda0cf36 Mon Sep 17 00:00:00 2001 From: kaadmy Date: Mon, 5 Oct 2015 11:25:11 -0700 Subject: [PATCH] more small cnahges to biomes and navigation --- minetest.conf | 2 +- mods/default/mapgen.lua | 26 ++++---------------------- mods/nav/map.lua | 2 +- 3 files changed, 6 insertions(+), 24 deletions(-) diff --git a/minetest.conf b/minetest.conf index 878721c..afa74ad 100644 --- a/minetest.conf +++ b/minetest.conf @@ -65,7 +65,7 @@ flowing_water_sounds = true # server(user stuff) max_users = 16 -player_transfer_distance = 4 # 64 nodes +player_transfer_distance = 5 # 80 nodes # server(performance stuff) max_block_generate_distance = 5 diff --git a/mods/default/mapgen.lua b/mods/default/mapgen.lua index 62dbe34..04bc2a6 100644 --- a/mods/default/mapgen.lua +++ b/mods/default/mapgen.lua @@ -44,7 +44,7 @@ minetest.register_biome( depth_top = 1, y_min = 2, - y_max = 8, + y_max = 6, heat_point = 35, humidity_point = 55, @@ -61,7 +61,7 @@ minetest.register_biome( depth_top = 1, y_min = 2, - y_max = 8, + y_max = 7, heat_point = 30, humidity_point = 42, @@ -188,24 +188,6 @@ minetest.register_biome( -- Oceans -minetest.register_biome( - { - name = "Swamp Ocean", - - node_water = "default:swamp_water_source", - node_top = "default:swamp_dirt", - node_filler = "default:swamp_dirt", - - depth_filler = 0, - depth_top = 9, - - y_min = -3, - y_max = 1, - - heat_point = 30, - humidity_point = 50, - }) - minetest.register_biome( { name = "Grassland Ocean", @@ -305,7 +287,7 @@ minetest.register_decoration( deco_type = "schematic", place_on = {"default:dirt_with_grass"}, sidelen = 16, - fill_ratio = 0.028, + fill_ratio = 0.023, biomes = {"Deep Forest"}, flags = "place_center_x, place_center_z", schematic = minetest.get_modpath("default").."/schematics/default_gigatree.mts", @@ -612,7 +594,7 @@ minetest.register_ore( -- Swamp ore_type = "blob", ore = "default:swamp_water_source", wherein = {"default:dirt_with_swamp_grass", "default:swamp_dirt"}, - biomes = {"Swamp", "Swamp Ocean"}, + biomes = {"Swamp"}, clust_scarcity = 10*10*10, clust_num_ores = 10, clust_size = 4, diff --git a/mods/nav/map.lua b/mods/nav/map.lua index 88722c0..be2044f 100644 --- a/mods/nav/map.lua +++ b/mods/nav/map.lua @@ -1,6 +1,6 @@ -- Map handling -nav.map_radius = 128 +nav.map_radius = 256 nav.waypoints = {}