FYI, I already made a post about this on Earendel's Discord.
In the meantime, it's an easy solve if you open up the AB zip, just wrap lines 49-51 of prototypes/decorative/vegetation.lua in a nil check, so that that block ends up looking like this.
for _, proto in pairs(data.raw.planet) do
if proto.map_gen_settings then
if proto.map_gen_settings.autoplace_settings.decorative.settings["green-"..plant.name] then
proto.map_gen_settings.autoplace_settings.decorative.settings["green-"..plant.name] = nil
end
end
end
Isn't it fun being the seeming first person to omit a particular optional property?