From 5841e787ebc44e29574131b342813c7cd8ee4f8e Mon Sep 17 00:00:00 2001 From: MewMew Date: Fri, 4 Oct 2019 23:12:26 +0200 Subject: [PATCH] minor river/spawn change --- maps/biter_battles_v2/config.lua | 2 +- maps/biter_battles_v2/{biter_battles_v2.lua => main.lua} | 0 maps/biter_battles_v2/terrain.lua | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename maps/biter_battles_v2/{biter_battles_v2.lua => main.lua} (100%) diff --git a/maps/biter_battles_v2/config.lua b/maps/biter_battles_v2/config.lua index 72dd9462..f9aafc12 100644 --- a/maps/biter_battles_v2/config.lua +++ b/maps/biter_battles_v2/config.lua @@ -19,7 +19,7 @@ bb_config = { ["fast_pregen"] = false, --Force fast pregeneration. --TERRAIN OPTIONS-- - ["border_river_width"] = 29, --Approximate width of the horizontal impassable river seperating the teams. (values up to 100) + ["border_river_width"] = 25, --Approximate width of the horizontal impassable river seperating the teams. (values up to 100) ["builders_area"] = true, --Grant each side a peaceful direction with no nests and biters? ["random_scrap"] = true, --Generate harvestable scrap around worms randomly? diff --git a/maps/biter_battles_v2/biter_battles_v2.lua b/maps/biter_battles_v2/main.lua similarity index 100% rename from maps/biter_battles_v2/biter_battles_v2.lua rename to maps/biter_battles_v2/main.lua diff --git a/maps/biter_battles_v2/terrain.lua b/maps/biter_battles_v2/terrain.lua index 4ccf3f2b..5236ec0b 100644 --- a/maps/biter_battles_v2/terrain.lua +++ b/maps/biter_battles_v2/terrain.lua @@ -2,7 +2,7 @@ local event = require 'utils.event' local math_random = math.random local simplex_noise = require 'utils.simplex_noise'.d2 local create_tile_chain = require "functions.create_tile_chain" -local spawn_circle_size = bb_config.border_river_width +local spawn_circle_size = 32 local ores = {"copper-ore", "iron-ore", "stone", "coal"} local function shuffle(tbl)