Aquilo Trenches


Aquilo has dark trenches between islands, which cannot be bridged with ice platforms. You'll need ships.

Content
3 months ago
2.0
571
Transportation Trains Environment

b For me it just made ice platforms fail instantly

4 months ago

In my game it just made all the ice platforms break instantly and ger replaced by the deep trench, which is odd and annoying cause I can't include this mod as if I ever need to remove it, it will replace all the trenches with like grass... Yes that is another issue

4 months ago

In my game it just made all the ice platforms break instantly

It's not doing that when I test it so probably being caused by some other mod somehow.

if I ever need to remove it, it will replace all the trenches with like grass... Yes that is another issue

If anyone else has this issue you can run this script either before or after removing this mod to replace all the tiles:

/c
local surface = game.get_surface("aquilo")
for chunk in surface.get_chunks() do
    for x = 0, 31 do
        for y = 0, 31 do
            local position = {x = x + chunk.x * 32, y = y + chunk.y * 32}
            local tile = surface.get_tile(position)
            if tile.name == "aquilo-trench" or tile.name == "grass-1" then
                surface.set_tiles({{position=position, name="ammoniacal-ocean"}})
            end
        end
    end
end

New response