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