local iW, iH = Map.GetGridSize()
for x = 0, iW - 1 do
for y = 0, iH - 1 do
if x == 27 and y == 45 then
local plot = Map.GetPlot(x, y)
plot:SetNWOfRiver(true, FlowDirectionTypes.FLOWDIRECTION_NORTHEAST)
end
if x == 25 and y == 44 then
local plot = Map.GetPlot(x, y)
plot:SetNWOfRiver(true, FlowDirectionTypes.FLOWDIRECTION_SOUTHWEST)
end
end
end