Hello. This looks like a great mod. I've only been doing testing in editor mode since I plan on doing a playthrough with plenty of water and islands, but so far it all looks great.
However, there is an incompatibility with Renai Transportation:
https://puu.sh/GRWnF/486fba5d72.png
Since your mod makes rail signals placable on water, modded rail signals don't match its collision masks, and ramps from Renai transportation are considered rail signals. It should be an easy fix in data-updates:
local signals = data.raw["rail-signal"]
local chainsignals = data.raw["rail-chain-signal"]
for key, value in pairs(signals) do
data.raw["rail-signal"][key].collision_mask = { "object-layer" }
end
for key, value in pairs(chainsignals) do
data.raw["rail-chain-signal"][key].collision_mask = { "object-layer" }
end
I just took the code you used for big electric poles and changed it so that all rail signals and chain signals will also be placeable on water so that mods that add in rail signal types won't have this error. (You can prob clean it up better. I'm not really a modder and don't have experience in it)
Also, with the above fix, you should be able to remove the code:
data.raw["rail-signal"]["rail-signal"].collision_mask = { "object-layer" }
data.raw["rail-chain-signal"]["rail-chain-signal"].collision_mask = { "object-layer" }
I tested it a bit and looks like it works properly.