Hello,
I found a fix: In data.lua, in the last section, change the
for _, v in pairs(allterrain) do
data.raw.tile[v].can_be_part_of_blueprint = nil
end
to this:
for _, v in pairs(allterrain) do
data.raw.tile[v].is_foundation = true
data.raw.tile[v].can_be_part_of_blueprint = nil
end
EDIT: The two data.raw commands need to be indented. The forum doesn't show indentions correctly...
That fixed it for me.
I'm gonna open a PR for the 2.0 branch so that it gets fixed upstream.