mirror of
https://github.com/Refactorio/RedMew.git
synced 2025-03-19 21:18:01 +02:00
DO: fix terraforming bounds of one direction maps (#1487)
This commit is contained in:
parent
b5dfd2a31f
commit
dc60ccecac
@ -91,4 +91,8 @@ return [[
|
|||||||
|
|
||||||
2025-01-14:
|
2025-01-14:
|
||||||
- [DO:CoalMaze] Added Coal Maze preset
|
- [DO:CoalMaze] Added Coal Maze preset
|
||||||
|
|
||||||
|
2025-02-19:
|
||||||
|
- [DO:OneDirection] Fixed terraforming bounds
|
||||||
|
- [DO:OneDirectionWide] Fixed terraforming bounds
|
||||||
]]
|
]]
|
||||||
|
@ -29,7 +29,7 @@ DOC.map_config.post_map_func = function(map_shape)
|
|||||||
water_border = B.choose(water_bounds, water_border, B.empty_shape)
|
water_border = B.choose(water_bounds, water_border, B.empty_shape)
|
||||||
return B.choose(map_bounds, map_shape, water_border)
|
return B.choose(map_bounds, map_shape, water_border)
|
||||||
end
|
end
|
||||||
DOC.terraforming.bounds = {
|
DOC.terraforming = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
start_size = 12 * 32,
|
start_size = 12 * 32,
|
||||||
min_pollution = 200,
|
min_pollution = 200,
|
||||||
|
@ -36,7 +36,7 @@ DOC.map_config.post_map_func = function(map_shape)
|
|||||||
water_border = B.choose(water_bounds, water_border, B.empty_shape)
|
water_border = B.choose(water_bounds, water_border, B.empty_shape)
|
||||||
return B.choose(map_bounds, map_shape, water_border)
|
return B.choose(map_bounds, map_shape, water_border)
|
||||||
end
|
end
|
||||||
DOC.terraforming.bounds = {
|
DOC.terraforming = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
start_size = 10 * 32,
|
start_size = 10 * 32,
|
||||||
min_pollution = 450,
|
min_pollution = 450,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user