1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-03-17 21:08:08 +02:00

DO: fix terraforming bounds of one direction maps (#1487)

This commit is contained in:
RedRafe 2025-02-19 21:44:26 +01:00 committed by GitHub
parent b5dfd2a31f
commit dc60ccecac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View File

@ -91,4 +91,8 @@ return [[
2025-01-14:
- [DO:CoalMaze] Added Coal Maze preset
2025-02-19:
- [DO:OneDirection] Fixed terraforming bounds
- [DO:OneDirectionWide] Fixed terraforming bounds
]]

View File

@ -29,7 +29,7 @@ DOC.map_config.post_map_func = function(map_shape)
water_border = B.choose(water_bounds, water_border, B.empty_shape)
return B.choose(map_bounds, map_shape, water_border)
end
DOC.terraforming.bounds = {
DOC.terraforming = {
enabled = true,
start_size = 12 * 32,
min_pollution = 200,

View File

@ -36,7 +36,7 @@ DOC.map_config.post_map_func = function(map_shape)
water_border = B.choose(water_bounds, water_border, B.empty_shape)
return B.choose(map_bounds, map_shape, water_border)
end
DOC.terraforming.bounds = {
DOC.terraforming = {
enabled = true,
start_size = 10 * 32,
min_pollution = 450,