Skip to content

Commit

Permalink
Fix #12, incorrect iron-ore autoplace
Browse files Browse the repository at this point in the history
  • Loading branch information
RedRafe committed Jun 21, 2023
1 parent c339e0a commit 60beec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resource-autoplace/resource-autoplace.lua
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ local function resource_autoplace_settings(params)
skip_span = noise.var("starting-resource-patch-set-count"),
skip_offset = starting_patch_set_index,
region_size = tne(starting_resource_placement_radius * 2),
candidate_spot_count = tne(starting_resource_placement_ring_radius),
candidate_spot_count = tne(starting_resource_placement_ring_radius and 128 or 32),
suggested_minimum_candidate_point_spacing = tne(32),
density_expression = litexp(3 * starting_density * starting_modulation),
spot_quantity_expression = litexp(starting_area_spot_quantity),
Expand Down

0 comments on commit 60beec9

Please sign in to comment.