From c8cb5ba0e5c8f8c218fc59dff032970a11e9a5cb Mon Sep 17 00:00:00 2001 From: TWLTriston Date: Sat, 25 May 2019 08:36:49 -0400 Subject: [PATCH] Tweaks to fluid % and fixing an undefined seed variable --- map_gen/maps/danger_bobangels_ores/ore.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/map_gen/maps/danger_bobangels_ores/ore.lua b/map_gen/maps/danger_bobangels_ores/ore.lua index 736a1114..e7a4edb1 100644 --- a/map_gen/maps/danger_bobangels_ores/ore.lua +++ b/map_gen/maps/danger_bobangels_ores/ore.lua @@ -110,12 +110,12 @@ local oil_resource = b.resource(oil_shape, 'crude-oil', value(250000, 150)) local fissure_scale = 1 / 100 local fissure_threshold = 0.6 local fissure_shape = b.throttle_world_xy(b.full_shape, 1, 7, 1, 7) -local fissure_resource = b.resource(fissure_shape, 'angels-fissure', value(250000, 150)) +local fissure_resource = b.resource(fissure_shape, 'angels-fissure', value(25000, 150)) local gas_well_scale = 1 / 64 local gas_well_threshold = 0.6 local gas_well_shape = b.throttle_world_xy(b.full_shape, 1, 7, 1, 7) -local gas_well_resource = b.resource(gas_well_shape, 'angels-natural-gas', value(250000, 150)) +local gas_well_resource = b.resource(gas_well_shape, 'angels-natural-gas', value(25000, 150)) local thorium_scale = 1 / 72 local thorium_threshold = 0.63 @@ -126,6 +126,9 @@ local function init(seed) local uranium_seed = seed * 3 local density_seed = seed * 4 local thorium_seed = seed * 5 + local fissure_seed = seed * 6 + local gas_well_seed = seed * 7 + local function tile_builder(tiles) local count = #tiles / 2